use of org.cytoscape.model.events.RowsSetEvent in project cytoscape-api by cytoscape.
the class AbstractViewUpdaterTest method testHandleEvent.
@Test
public void testHandleEvent() {
rows = new ArrayList<RowSetRecord>();
RowSetRecord rec1 = new RowSetRecord(row, "test", value, rawValue);
rows.add(rec1);
RowsSetEvent event = new RowsSetEvent(source, rows);
updater.handleEvent(event);
verify(row, times(0)).getAllValues();
}
Aggregations