01: package test4;
02:
03: import java.util.ArrayList;
04:
05: public class CCTest4ai {
06:
07: public static final int TEST_FIELD = 1;
08:
09: public static final List<String> testMethod() {
10: List<String> result = new ArrayList<String>();
11:
12: result.add("Hello, world.");
13:
14: return result;
15: }
16:
17: public class Inner {
18: }
19: }
|