()
| 92 | } |
| 93 | |
| 94 | @Test |
| 95 | // See PIG-1443 |
| 96 | public void testTupleSizeWithString() { |
| 97 | Tuple t = Util.createTuple(new String[] {"1234567", "bar"}); |
| 98 | long size = t.getMemorySize(); |
| 99 | assertEquals("tuple size", 192, size); |
| 100 | } |
| 101 | |
| 102 | @Test |
| 103 | public void testTupleSizeWithByteArrays() { |
nothing calls this directly
no test coverage detected