()
| 36 | final Tuple t = new Tuple<>(data); |
| 37 | |
| 38 | public void testSize() { |
| 39 | assertEquals("Size of " + t, 3, t.size()); |
| 40 | |
| 41 | assertEquals("get(0)", "a", t.get(0)); |
| 42 | assertEquals("get(1)", "b", t.get(1)); |
| 43 | } |
| 44 | |
| 45 | public void testGetOutOfTuple() { |
| 46 | try { |
nothing calls this directly
no test coverage detected