diff options
author | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2019-11-11 16:09:54 +0100 |
---|---|---|
committer | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2019-11-11 16:09:54 +0100 |
commit | 8feeb2fad561c3fc1ea1e9e4f0820498ed302794 (patch) | |
tree | 4b8020c8b6ce672d39c0329eaa13492be9858413 /src/test/java/pl/edu/mimuw | |
parent | fba2e1f41625a998624c6918eaf034cf3e9bd71a (diff) |
Rename test functions
Diffstat (limited to 'src/test/java/pl/edu/mimuw')
-rw-r--r-- | src/test/java/pl/edu/mimuw/cloudatlas/interpreter/InterpreterTests.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/test/java/pl/edu/mimuw/cloudatlas/interpreter/InterpreterTests.java b/src/test/java/pl/edu/mimuw/cloudatlas/interpreter/InterpreterTests.java index 54312b8..20f7c2e 100644 --- a/src/test/java/pl/edu/mimuw/cloudatlas/interpreter/InterpreterTests.java +++ b/src/test/java/pl/edu/mimuw/cloudatlas/interpreter/InterpreterTests.java @@ -11,47 +11,47 @@ import org.junit.Test; public class InterpreterTests { @Test - public void fileTest1() throws Exception { + public void fileTest01() throws Exception { runFileTest(1); } @Test - public void fileTest2() throws Exception { + public void fileTest02() throws Exception { runFileTest(2); } @Test - public void fileTest3() throws Exception { + public void fileTest03() throws Exception { runFileTest(3); } @Test - public void fileTest4() throws Exception { + public void fileTest04() throws Exception { runFileTest(4); } @Test - public void fileTest5() throws Exception { + public void fileTest05() throws Exception { runFileTest(5); } @Test - public void fileTest6() throws Exception { + public void fileTest06() throws Exception { runFileTest(6); } @Test - public void fileTest7() throws Exception { + public void fileTest07() throws Exception { runFileTest(7); } @Test - public void fileTest8() throws Exception { + public void fileTest08() throws Exception { runFileTest(8); } @Test - public void fileTest9() throws Exception { + public void fileTest09() throws Exception { runFileTest(9); } |