01: package test7;
02:
03: import static test7.CCTest7a.testStatic;
04:
05: public class CCTest7b {
06:
07: public static void main(String[] args) {
08: CCTest7a t = new CCTest7a();
09:
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: }
|