()
| 109 | } |
| 110 | |
| 111 | @Test |
| 112 | public void testTupleSizeWithDoubles() { |
| 113 | Tuple t = mTupleFactory.newTuple(); |
| 114 | t.append(new Double(0.1)); |
| 115 | t.append(new Double(2000.10001)); |
| 116 | long size = t.getMemorySize(); |
| 117 | assertEquals("tuple size", 120, size); |
| 118 | } |
| 119 | |
| 120 | @Test |
| 121 | public void testTupleSizeWithFloats() { |
nothing calls this directly
no test coverage detected