1 19 20 package org.netbeans.modules.j2ee.sun.validation; 21 22 import junit.framework.*; 23 24 29 30 public class ValidationManagerFactoryTest extends TestCase{ 31 32 33 public ValidationManagerFactoryTest(String name){ 34 super(name); 35 } 36 37 38 public static void main(String args[]){ 39 junit.textui.TestRunner.run(suite()); 40 } 41 42 43 public void testCreate(){ 44 nyi(); 45 } 46 47 48 51 public static Test suite(){ 52 TestSuite suite = new TestSuite(ValidationManagerFactoryTest.class); 53 return suite; 54 } 55 56 57 60 protected void setUp(){ 61 } 62 63 64 67 protected void tearDown(){ 68 } 69 70 71 private void nyi(){ 72 } 74 } 75 | Popular Tags |