1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-12-17 16:31:34 +00:00

Added test references.

This commit is contained in:
jespergravgaard 2020-10-10 19:45:02 +02:00
parent 6677cf0902
commit 8fd914a9d5

View File

@ -46,32 +46,32 @@ public class TestPrograms {
@Test
public void testStrengthReduction6() throws IOException, URISyntaxException {
compileAndCompare("strength-reduction-6.c", log());
compileAndCompare("strength-reduction-6.c");
}
@Test
public void testStrengthReduction5() throws IOException, URISyntaxException {
compileAndCompare("strength-reduction-5.c", log());
compileAndCompare("strength-reduction-5.c");
}
@Test
public void testStrengthReduction4() throws IOException, URISyntaxException {
compileAndCompare("strength-reduction-4.c", log());
compileAndCompare("strength-reduction-4.c");
}
@Test
public void testStrengthReduction3() throws IOException, URISyntaxException {
compileAndCompare("strength-reduction-3.c", log());
compileAndCompare("strength-reduction-3.c");
}
@Test
public void testStrengthReduction2() throws IOException, URISyntaxException {
compileAndCompare("strength-reduction-2.c", log());
compileAndCompare("strength-reduction-2.c");
}
@Test
public void testStrengthReduction1() throws IOException, URISyntaxException {
compileAndCompare("strength-reduction-1.c", log());
compileAndCompare("strength-reduction-1.c");
}
@Test