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