MCPcopy Create free account
hub / github.com/1345414527/MIT6.830 / getSize

Method getSize

test/simpledb/TupleDescTest.java:130–137  ·  view source on GitHub ↗

Unit test for TupleDesc.getSize()

()

Source from the content-addressed store, hash-verified

128 * Unit test for TupleDesc.getSize()
129 */
130 @Test public void getSize() {
131 int[] lengths = new int[] { 1, 2, 1000 };
132
133 for (int len: lengths) {
134 TupleDesc td = Utility.getTupleDesc(len);
135 assertEquals(len * Type.INT_TYPE.getLen(), td.getSize());
136 }
137 }
138
139 /**
140 * Unit test for TupleDesc.numFields()

Callers

nothing calls this directly

Calls 3

getTupleDescMethod · 0.95
getSizeMethod · 0.95
getLenMethod · 0.80

Tested by

no test coverage detected