1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-02 22:56:11 +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() {
}
@Test
public void testLoopBreakNested() throws IOException, URISyntaxException {
compileAndCompare("loop-break-nested");
}
@Test
public void testLoopBreak() throws IOException, URISyntaxException {
compileAndCompare("loop-break");
}
@Test
public void testNoLocalScope() throws IOException, URISyntaxException {
compileAndCompare("localscope-loops");
@ -77,6 +67,17 @@ public class TestPrograms {
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
public void testConstEarlyIdentification() throws IOException, URISyntaxException {
compileAndCompare("const-early-identification");