package jcgp.tests; import static org.junit.Assert.*; import org.junit.Before; import org.junit.Test; /** * * Tests which cover the behaviour specified for a node. * * - A node should contain read-only row and column values which are set upon construction. * - It should contain a fully accessible Function object. * - It should contain a set of connections which can be initialised and randomly * modified. * * WARNING: changing parameters may cause the tests to incorrectly fail! * * @author Eduardo Pedroni * */ public class NodeTests { @Before public void setUp() throws Exception { } @Test public void test() { } }