1 19 20 package org.netbeans.modules.junit; 21 22 import org.openide.TopManager; 23 import junit.framework.*; 24 import junit.runner.*; 25 import java.util.*; 26 import java.io.*; 27 import junit.framework.*; 28 29 public class TestRunnerTest extends TestCase { 30 31 public TestRunnerTest(java.lang.String testName) { 32 super(testName); 33 } 34 35 public static void main(java.lang.String [] args) { 36 junit.textui.TestRunner.run(suite()); 37 } 38 39 public static Test suite() { 40 TestSuite suite = new TestSuite(TestRunnerTest.class); 41 42 return suite; 43 } 44 45 46 public void testGetLoader() { 47 System.out.println("testGetLoader"); 48 49 fail("The test case is empty."); 51 } 52 53 54 public void testAddError() { 55 System.out.println("testAddError"); 56 57 fail("The test case is empty."); 59 } 60 61 62 public void testAddFailure() { 63 System.out.println("testAddFailure"); 64 65 fail("The test case is empty."); 67 } 68 69 70 public void testEndTest() { 71 System.out.println("testEndTest"); 72 73 fail("The test case is empty."); 75 } 76 77 78 public void testStartTest() { 79 System.out.println("testStartTest"); 80 81 fail("The test case is empty."); 83 } 84 85 86 public void testDoRun() { 87 System.out.println("testDoRun"); 88 89 fail("The test case is empty."); 91 } 92 93 94 public void testRunFailed() { 95 System.out.println("testRunFailed"); 96 97 fail("The test case is empty."); 99 } 100 101 102 public void testStart() { 103 System.out.println("testStart"); 104 105 fail("The test case is empty."); 107 } 108 109 } 110 | Popular Tags |