1 23 24 package com.sun.enterprise.tools.common.validation; 25 26 import junit.framework.*; 27 28 33 34 public class ValidationManagerTest extends TestCase{ 35 36 37 public ValidationManagerTest(String name){ 38 super(name); 39 } 40 41 42 public static void main(String args[]){ 43 junit.textui.TestRunner.run(suite()); 44 } 45 46 47 public void testCreate() { 48 nyi(); 49 } 50 51 52 55 public static Test suite(){ 56 TestSuite suite = new TestSuite(ValidationManagerTest.class); 57 return suite; 58 } 59 60 61 64 protected void setUp() { 65 } 66 67 68 71 protected void tearDown() { 72 } 73 74 75 private void nyi() { 76 fail("Not yet implemented"); } 78 } 79 | Popular Tags |