use of com.google.security.zynamics.binnavi.Gui.Debug.EventLists.CEventListTableModel in project binnavi by google.
the class CEventListTableModelTest method test2056.
/**
* This test makes sure that the listener issue described in Case 2056 does not happen again.
*
* @throws CouldntLoadDataException
* @throws LoadCancelledException
* @throws CouldntSaveDataException
*/
@Test
public void test2056() throws CouldntLoadDataException, LoadCancelledException, CouldntSaveDataException {
final INaviModule module = new MockModule(false);
module.getContent().getTraceContainer().createTrace("foo", "bar");
final ITraceListProvider traceListProvider = new ModuleTraceProvider(module);
final CEventListTableModel model = new CEventListTableModel(traceListProvider);
module.load();
model.delete();
}
Aggregations