01: package test5;
02:
03: import static test4.CCTest4a.*;
04:
05: public class CCTest5b {
06:
07: public static void main(String[] args) {
08: int x = TEST_FIELD; //Check wheher the CC provides TEST_FIELD after the =
09:
10: testMethod().get(0).indexOf("Hello"); //Check whether the CC provides "testMethod". Check the methods provided after the dot.
11: }
12: }
|