KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test7 > CCTest7b


1 package test7;
2
3 import static test7.CCTest7a.testStatic;
4
5 public class CCTest7b {
6     
7     public static void main(String JavaDoc[] args) {
8         CCTest7a t = new CCTest7a();
9     
10     t.test("Hello", "Hello", "Hello"); //Check the signature of the test method.
11
testStatic("Hello", "Hello", "Hello"); //Check that the testStatic method is provided in the CC. Check its signature.
12
}
13     
14 }
Popular Tags