KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > junitx > extensions > SerializabilityTestCaseTest


1 package junitx.extensions;
2
3 import java.io.Serializable JavaDoc;
4
5 /**
6  * Unit tests for the serializability test class.
7  *
8  * @version $Revision: 1.1 $ $Date: 2003/02/05 10:27:29 $
9  * @author <a HREF="mailto:pholser@yahoo.com">Paul Holser</a>
10  */

11 public class SerializabilityTestCaseTest
12         extends SerializabilityTestCase {
13
14     public SerializabilityTestCaseTest(String JavaDoc name) {
15         super(name);
16     }
17
18     protected Serializable JavaDoc createInstance() {
19         return new Foo(1);
20     }
21
22 }
23
Popular Tags