1 23 24 27 28 package com.sun.enterprise.tools.common.validation.util; 29 30 import junit.framework.*; 31 32 37 38 public class ObjectFactoryTest extends TestCase{ 39 40 41 public ObjectFactoryTest(String name){ 42 super(name); 43 } 44 45 46 public static void main(String args[]){ 47 junit.textui.TestRunner.run(suite()); 48 } 49 50 51 public void testCreate(){ 52 nyi(); 53 } 54 55 56 59 public static Test suite(){ 60 TestSuite suite = new TestSuite(ObjectFactoryTest.class); 61 return suite; 62 } 63 64 65 68 protected void setUp(){ 69 } 70 71 72 75 protected void tearDown(){ 76 } 77 78 79 private void nyi(){ 80 fail("Not yet implemented"); 81 } 82 } 83 | Popular Tags |