1 23 24 28 29 35 36 package com.sun.enterprise.admin.monitor.stats; 37 38 import junit.framework.*; 39 40 44 public class StringStatisticImplTest extends TestCase { 45 46 public StringStatisticImplTest(java.lang.String testName) { 47 super(testName); 48 } 49 50 public static Test suite() { 51 TestSuite suite = new TestSuite(StringStatisticImplTest.class); 52 return suite; 53 } 54 55 58 public void testGetCurrent() { 59 System.out.println("testGetCurrent"); 60 fail("The test case is empty."); 61 } 62 63 public static void main(java.lang.String [] args) { 64 junit.textui.TestRunner.run(suite()); 65 } 66 67 71 72 } 73 | Popular Tags |