1 package junitx.extensions;2 3 import java.io.Serializable ;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 SerializabilityTestCaseTest12 extends SerializabilityTestCase {13 14 public SerializabilityTestCaseTest(String name) {15 super(name);16 }17 18 protected Serializable createInstance() {19 return new Foo(1);20 }21 22 }23