KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > junit > testresults > test > EmptyJUnitTest


1 /*
2  * EmptyJUnitTest.java
3  * JUnit based test
4  *
5  * Created on September 20, 2006, 3:57 PM
6  */

7
8 package org.netbeans.test.junit.testresults.test;
9
10 import junit.framework.TestCase;
11 import junit.framework.*;
12
13 /**
14  *
15  * @author ms159439
16  */

17 public class EmptyJUnitTest extends TestCase {
18     
19     public EmptyJUnitTest(String JavaDoc testName) {
20         super(testName);
21     }
22
23     protected void setUp() throws Exception JavaDoc {
24     }
25
26     protected void tearDown() throws Exception JavaDoc {
27     }
28     
29     public static Test suite() {
30         junit.framework.TestSuite suite =
31                 new junit.framework.TestSuite(EmptyJUnitTest.class);
32         return suite;
33     }
34     
35     // TODO add test methods here. The name must begin with 'test'. For example:
36
// public void testHello() {}
37

38 }
39
Popular Tags