1
2
3
4
5
6 package yawn.io.xml;
7
8 import junit.framework.TestCase;
9 import yawn.io.serialization.ISerializer;
10 import yawn.nn.mlp.MultiLayerPerceptron;
11
12 /***
13 * Base class for all the <code>ISerializer</code> test fixtures.
14 *
15 * <p>$Id: AbstractSerializerTest.java,v 1.7 2005/05/09 11:04:57 supermarti Exp $</p>
16 *
17 * @author <a href="mailto:alexei.guevara@uhn.on.ca">Alexei Guevara </a>
18 * @version $Revision: 1.7 $
19 */
20
21 public abstract class AbstractSerializerTest extends TestCase {
22
23
24
25
26 protected void setUp() throws Exception {
27 super.setUp();
28 }
29
30
31
32
33 protected void tearDown() throws Exception {
34 super.tearDown();
35 }
36
37 /***
38 * @return The <code>ISerializer</code> to test.
39 *
40 * @uml.property name="serializer"
41 * @uml.associationEnd multiplicity="(0 1)"
42 */
43 protected abstract ISerializer getSerializer();
44
45 public void testMultiLayerPerceptron() {
46 MultiLayerPerceptron nn = new MultiLayerPerceptron();
47 }
48 }