From 03296d9173e29f73c4be3f19aaa774c9009b8493 Mon Sep 17 00:00:00 2001 From: Jesper Gravgaard Date: Sun, 31 Mar 2019 17:49:50 +0200 Subject: [PATCH] Moved in attempt to avoid conflict. --- .../dk/camelot64/kickc/test/TestPrograms.java | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java index 258cd1da7..07b2f54f5 100644 --- a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java +++ b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java @@ -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");