From 761021e0551beaaaac1120ef6da37a70281974b2 Mon Sep 17 00:00:00 2001 From: Eduardo Pedroni Date: Thu, 30 Jan 2014 16:03:33 +0000 Subject: 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. --- src/jcgp/tests/Tests.java | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/jcgp/tests/Tests.java (limited to 'src/jcgp/tests') 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"); + + } + +} -- cgit v1.2.3