()
| 118 | } |
| 119 | |
| 120 | @Test |
| 121 | public void testTupleSizeWithFloats() { |
| 122 | Tuple t = mTupleFactory.newTuple(); |
| 123 | t.append(new Float(0.1F)); |
| 124 | t.append(new Float(2000.10001F)); |
| 125 | long size = t.getMemorySize(); |
| 126 | assertEquals("tuple size", 120, size); |
| 127 | } |
| 128 | |
| 129 | @Test |
| 130 | public void testTupleSizeWithLongs() { |
nothing calls this directly
no test coverage detected