1 23 24 27 28 package com.sun.enterprise.tools.common.validation; 29 30 import junit.framework.*; 31 32 37 38 public class ValidatorTest extends TestCase{ 39 40 41 42 public ValidatorTest(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(ValidatorTest.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"); } 83 } 84 | Popular Tags |