()
| 100 | } |
| 101 | |
| 102 | @Test |
| 103 | public void testTupleSizeWithByteArrays() { |
| 104 | Tuple t = mTupleFactory.newTuple(); |
| 105 | t.append(new DataByteArray("1234567")); |
| 106 | t.append(new DataByteArray("bar")); |
| 107 | long size = t.getMemorySize(); |
| 108 | assertEquals("tuple size", 160, size); |
| 109 | } |
| 110 | |
| 111 | @Test |
| 112 | public void testTupleSizeWithDoubles() { |
nothing calls this directly
no test coverage detected