1 19 20 26 27 package org.netbeans.test; 28 import junit.framework.*; 29 30 31 import junit.framework.*; 32 33 37 public class FreeFormMainTest extends TestCase { 38 39 public FreeFormMainTest(java.lang.String testName) { 40 super(testName); 41 } 42 43 public static Test suite() { 44 TestSuite suite = new TestSuite(FreeFormMainTest.class); 45 return suite; 46 } 47 48 protected void setUp() throws java.lang.Exception { 49 } 50 51 protected void tearDown() throws java.lang.Exception { 52 } 53 54 57 public void testGetString() { 58 System.out.println("testGetString"); 59 assertEquals("Ahoj", FreeFormMain.getString()); 60 } 61 62 } 63 | Popular Tags |