Set up initial resources for each unit test.
()
| 27 | * Set up initial resources for each unit test. |
| 28 | */ |
| 29 | @Before |
| 30 | public void setUp() throws Exception { |
| 31 | f = BTreeUtility.createRandomBTreeFile(2, 20, null, null, 0); |
| 32 | td = Utility.getTupleDesc(2); |
| 33 | tid = new TransactionId(); |
| 34 | } |
| 35 | |
| 36 | @After |
| 37 | public void tearDown() { |
nothing calls this directly
no test coverage detected