diff options
author | Eduardo Pedroni <ep625@york.ac.uk> | 2014-01-30 16:03:33 +0000 |
---|---|---|
committer | Eduardo Pedroni <ep625@york.ac.uk> | 2014-01-30 16:03:33 +0000 |
commit | 761021e0551beaaaac1120ef6da37a70281974b2 (patch) | |
tree | e5ec3899242ff1b0c87131340c2c3c617ebe841b /src/jcgp/tests | |
parent | 2fa054bf63006dedc98639ff08b3f2c637c5d74b (diff) |
Started formally implementing the class structure but ran into some issues. I'll re-design the structure to account for function mutations, function variety, generic data types and modularized behaviour.
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"); + + } + +} |