use of com.insightfullogic.honest_profiler.framework.checker.FlatTableViewCheckAdapter in project honest-profiler by jvm-profiling-tools.
the class FlatViewQuickFilterTest method checkResult.
private void checkResult(FxRobot robot, ScenarioStraightFilter... filters) {
asList(FrameGrouping.values()).forEach(fg -> {
selectFrameGrouping(robot, fg, "#flat");
TableView<Entry> tableView = getFlatTableView(robot);
scenario.checkFlatAggregation(new FlatTableViewCheckAdapter(ALL_TOGETHER, fg, tableView), filters);
});
}
use of com.insightfullogic.honest_profiler.framework.checker.FlatTableViewCheckAdapter in project honest-profiler by jvm-profiling-tools.
the class FlatViewTest method testFlatViewScenario.
// Actual Test Method
@Test
public void testFlatViewScenario() {
FxRobot robot = new FxRobot();
newProfileTab(robot, app(), 0, scenario.getName(), scenario, LOG);
selectView(robot, FLAT);
selectFrameGrouping(robot, frameGrouping, "#flat");
TableView<Entry> tableView = getFlatTableView(robot);
runLater(() -> scenario.checkFlatAggregation(new FlatTableViewCheckAdapter(BY_ID, frameGrouping, tableView)));
}
Aggregations