()
| 127 | } |
| 128 | |
| 129 | @Test |
| 130 | public void testTupleSizeWithLongs() { |
| 131 | Tuple t = mTupleFactory.newTuple(); |
| 132 | t.append(new Long(100)); |
| 133 | t.append(new Long(2000)); |
| 134 | long size = t.getMemorySize(); |
| 135 | assertEquals("tuple size", 120, size); |
| 136 | } |
| 137 | |
| 138 | @Test |
| 139 | public void testTupleSizeWithBooleans() { |
nothing calls this directly
no test coverage detected