()
| 136 | } |
| 137 | |
| 138 | @Test |
| 139 | public void testTupleSizeWithBooleans() { |
| 140 | Tuple t = mTupleFactory.newTuple(); |
| 141 | t.append(new Boolean(true)); |
| 142 | t.append(new Boolean(false)); |
| 143 | long size = t.getMemorySize(); |
| 144 | assertEquals("tuple size", 120, size); |
| 145 | } |
| 146 | |
| 147 | @Test |
| 148 | public void testTupleIterator() { |
nothing calls this directly
no test coverage detected