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