01: package test.convert;
02:
03: import junit.framework.*;
04:
05: /**
06: * This class
07: *
08: * @author Cedric Beust, May 5, 2004
09: */
10: public class JUnitSample1 extends TestCase {
11: private String m_field = null;
12:
13: public JUnitSample1() {
14: super ();
15: }
16:
17: public JUnitSample1(String n) {
18: super (n);
19: }
20:
21: public void setUp() {
22: m_field = "foo";
23: }
24:
25: public void tearDown() {
26: m_field = null;
27: }
28:
29: /**
30: * Testing method Sample1_1.
31: *
32: */
33: public void testSample1_1() {
34: }
35:
36: public void testSample1_2() {
37:
38: }
39:
40: private static void ppp(String s) {
41: System.out.println("[JUnitSample1] " + s);
42: }
43:
44: }
|