01: package test4;
02:
03: import static test4.CCTest4a.TEST_FIELD;
04:
05: public class CCTest4biv {
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: }
|