| 53 | |
| 54 | public void testSimpleSize() throws Exception { |
| 55 | class TestStructure extends Structure { |
| 56 | public int field; |
| 57 | @Override |
| 58 | protected List<String> getFieldOrder() { |
| 59 | return Arrays.asList("field"); |
| 60 | } |
| 61 | } |
| 62 | Structure s = new TestStructure(); |
| 63 | assertEquals("Wrong size", 4, s.size()); |
| 64 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…