diff options
Diffstat (limited to 'src/jcgp/tests')
-rw-r--r-- | src/jcgp/tests/Tests.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/jcgp/tests/Tests.java b/src/jcgp/tests/Tests.java new file mode 100644 index 0000000..28bfd3d --- /dev/null +++ b/src/jcgp/tests/Tests.java @@ -0,0 +1,23 @@ +package jcgp.tests; + +import static org.junit.Assert.*; + +import org.junit.Before; +import org.junit.Test; + +public class Tests { + + @Before + public void setUp() throws Exception { + + + + } + + @Test + public void test() { + fail("Not yet implemented"); + + } + +} |