| 31 | public class UnionTest extends TestCase { |
| 32 | |
| 33 | public static class TestStructure extends Structure { |
| 34 | public static final List<String> FIELDS = createFieldsOrder("value"); |
| 35 | public String value; |
| 36 | @Override |
| 37 | protected List<String> getFieldOrder() { |
| 38 | return FIELDS; |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | public static class BigTestStructure extends Structure { |
| 43 | public static final List<String> FIELDS = createFieldsOrder("field1", "field2"); |
nothing calls this directly
no test coverage detected
searching dependent graphs…