◐ Shell
reader mode source ↗
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
File filter
Conversations
Jump to
Diff view
Apply and reload
Show whitespace
Diff view
Apply and reload
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,8 @@ private void selectTestInTestOverviewTable(Test test) {

private void applyShowSuites() {
applyFilter(showSuccessfulTestsCheckBoxMenuItem.isSelected(), showDisabledTestsCheckBoxMenuItem.isSelected());
if (showSuitesCheckBoxMenuItem.isSelected()) {
testOverviewScrollPane.setViewportView(testOverviewTreeTable);
// sync in tree-table - just first selected test
Expand All @@ -357,6 +359,7 @@ private void applyShowSuites() {
testOverviewTreeTable.getTree().setSelectionPath(new TreePath(itemNode.getPath()));
}
}
} else {
testOverviewScrollPane.setViewportView(testOverviewTable);
// sync in table - just first test in selected item
Expand All @@ -372,6 +375,7 @@ private void applyShowSuites() {
}
selectTestInTestOverviewTable(test);
}
}
showSelectedRow();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public void runTestsWithMaxTime() {
}

@Test
public void runTestsHidingSuccesfulRuns() {
preferences.setShowSuccessfulTests(false);
preferences.setShowWarningIndicator(true);
preferences.setShowInfoIndicator(true);
Expand Down
Toggle all file notes Toggle all file annotations