1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-08-02 09:29:35 +00:00

Renamed tests.

This commit is contained in:
jespergravgaard 2019-02-10 19:11:50 +01:00
parent dcd4e070ba
commit bfce6bffd1
11 changed files with 4 additions and 4 deletions

View File

@ -358,13 +358,13 @@ public class TestPrograms {
} }
@Test @Test
public void testCompoundAssignment() throws IOException, URISyntaxException { public void testAssignmentCompound() throws IOException, URISyntaxException {
compileAndCompare("compound-assignment"); compileAndCompare("assignment-compound");
} }
@Test @Test
public void testChainedAssignment() throws IOException, URISyntaxException { public void testAssignmentChained() throws IOException, URISyntaxException {
compileAndCompare("chained-assignment"); compileAndCompare("assignment-chained");
} }
@Test @Test