@Test
public void testRetrievingAllRecords() throws InstantiationException,
IllegalAccessException, ClassNotFoundException, SQLException {
DerbyEmbeddedDS ds = new DerbyEmbeddedDS();
List<SimulationRecord> storedRecords = ds.findAll();
Assert.assertTrue(storedRecords.size() > 1);
}
@Test
public void testDeletingRecord() throws InstantiationException,