KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * TestClass.java
3  *
4  * Created on September 12, 2006, 12:04 PM
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */

9
10 package org.netbeans.test.junit.testresults.test;
11
12 /**
13  *
14  * @author ms159439
15  */

16 public class TestClass {
17     
18     /** Creates a new instance of TestClass */
19     public TestClass() {
20     }
21     
22     public int add0(int a, int b) {
23         return a + b;
24     }
25     
26     public int add1(int a, int b) {
27         return a + b;
28     }
29     
30 }
31
Popular Tags