01: package org.wa59055;
02:
03: import junit.framework.*;
04:
05: public class Class1Test extends TestCase {
06:
07: public Class1Test(String testName) {
08: super (testName);
09: }
10:
11: /**
12: * Test of method1 method, of class org.wa59055.Class1.
13: */
14: public void testMethod1() {
15: System.out.println("method1");
16:
17: Class1 instance = new Class1();
18:
19: instance.method1();
20:
21: // TODO review the generated test code and remove the default call to fail.
22: fail("The test case is a prototype.");
23: }
24:
25: }
|