1 23 24 30 31 package com.sun.enterprise.admin.monitor.registry.spi; 32 33 import junit.framework.*; 34 35 39 public class AttributeStringHelperTest extends TestCase { 40 41 public AttributeStringHelperTest(java.lang.String testName) { 42 super(testName); 43 } 44 45 public static Test suite() { 46 TestSuite suite = new TestSuite(AttributeStringHelperTest.class); 47 return suite; 48 } 49 50 53 public void testJoinAttributes() { 54 System.out.println("testJoinAttributes"); 55 fail("The test case is empty."); 56 } 57 58 61 public void testSplitAttribute() { 62 System.out.println("testSplitAttribute"); 63 fail("The test case is empty."); 64 } 65 66 public static void main(java.lang.String [] args) { 67 junit.textui.TestRunner.run(suite()); 68 } 69 70 74 75 } 76 | Popular Tags |