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

Method getTupleDesc

test/simpledb/InsertTest.java:43–48  ·  view source on GitHub ↗

Unit test for Insert.getTupleDesc()

()

Source from the content-addressed store, hash-verified

41 * Unit test for Insert.getTupleDesc()
42 */
43 @Test public void getTupleDesc() throws Exception {
44 Insert op = new Insert(tid,scan1, empty.getId());
45 TupleDesc expected = Utility.getTupleDesc(1);
46 TupleDesc actual = op.getTupleDesc();
47 assertEquals(expected, actual);
48 }
49
50 /**
51 * Unit test for Insert.getNext(), inserting elements into an empty file

Callers

nothing calls this directly

Calls 3

getTupleDescMethod · 0.95
getTupleDescMethod · 0.95
getIdMethod · 0.65

Tested by

no test coverage detected