public class SimpleTest extends TestCase
1: // FileName: SimpleTest.java
2: // Description: This class is used in the junit
3: // tutorial provided by team 10.
4: // Date: March 11, 2003
5:
6:
7: import junit.framework.*;
8: // ------------------
9:
10: public class SimpleTest extends TestCase
11: // ----------------
12: {
13: public SimpleTest(String name)
14: {
15: super(name);
16: }
17:
18: public void testSimpleTest()
19: // ----------------
20: {
21: int answer = 3;
22: assertEquals((1+1), answer);
23: //------------
24: }
25: }