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