1
2
3
4
5
6 package yawn.config.xml;
7
8 import junit.framework.TestCase;
9
10 /***
11 * All Test Cases for <code>ISerializer</code> should inherit from this class.
12 *
13 * @author <a href="mailto:alexei.guevara@uhn.on.ca">Alexei Guevara </a>
14 */
15 public abstract class AbstractNNConfigurationSerializerTest extends TestCase {
16
17 /***
18 * @param theTestCaseMethodName
19 */
20 public AbstractNNConfigurationSerializerTest(String theTestCaseMethodName) {
21 super(theTestCaseMethodName);
22 }
23
24 public void testPrecondition1() {
25
26 }
27
28 }