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