01: package org.wa59055.extra;
02:
03: import junit.framework.*;
04:
05: public class Class2Test extends TestCase {
06:
07: public Class2Test(String testName) {
08: super (testName);
09: }
10:
11: /**
12: * Test of method1 method, of class org.wa59055.extra.Class2.
13: */
14: public void testMethod1() {
15: System.out.println("method1");
16:
17: Class2 instance = new Class2();
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: }
|