1 20 21 package org.netbeans.test.performance; 22 23 import junit.framework.*; 24 25 29 public class ClassTest extends TestCase { 30 31 public ClassTest(String testName) { 32 super(testName); 33 } 34 35 protected void setUp() throws java.lang.Exception { 36 } 37 38 protected void tearDown() throws java.lang.Exception { 39 } 40 41 public static junit.framework.Test suite() { 42 43 junit.framework.TestSuite suite = new junit.framework.TestSuite(ClassTest.class); 44 45 return suite; 46 } 47 48 public void testInit() { 50 Class clz = new Class (); 51 } 52 53 } 54 | Popular Tags |