1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2025-01-16 08:33:37 +00:00

Moved in attempt to avoid conflict.

This commit is contained in:
Jesper Gravgaard 2019-03-31 17:49:50 +02:00
parent 864c79335f
commit 03296d9173

View File

@ -32,16 +32,6 @@ public class TestPrograms {
public TestPrograms() { public TestPrograms() {
} }
@Test
public void testLoopBreakNested() throws IOException, URISyntaxException {
compileAndCompare("loop-break-nested");
}
@Test
public void testLoopBreak() throws IOException, URISyntaxException {
compileAndCompare("loop-break");
}
@Test @Test
public void testNoLocalScope() throws IOException, URISyntaxException { public void testNoLocalScope() throws IOException, URISyntaxException {
compileAndCompare("localscope-loops"); compileAndCompare("localscope-loops");
@ -77,6 +67,17 @@ public class TestPrograms {
compileAndCompare("examples/music/music"); compileAndCompare("examples/music/music");
} }
@Test
public void testLoopBreakNested() throws IOException, URISyntaxException {
compileAndCompare("loop-break-nested");
}
@Test
public void testLoopBreak() throws IOException, URISyntaxException {
compileAndCompare("loop-break");
}
@Test @Test
public void testConstEarlyIdentification() throws IOException, URISyntaxException { public void testConstEarlyIdentification() throws IOException, URISyntaxException {
compileAndCompare("const-early-identification"); compileAndCompare("const-early-identification");