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