@@ -55,6 +55,8 @@ class PreferencePanel extends DefaultTraversablePanel {
55
55
val JCheckBox showInfoCounterCheckBox = new JCheckBox
56
56
val JCheckBox showWarningIndicatorCheckBox = new JCheckBox
57
57
val JCheckBox showInfoIndicatorCheckBox = new JCheckBox
58
+ val JCheckBox showSuccessfulTestsCheckBox = new JCheckBox
59
+ val JCheckBox showDisabledTestsCheckBox = new JCheckBox
58
60
val JCheckBox showTestDescriptionCheckBox = new JCheckBox
59
61
val JCheckBox syncDetailTabCheckBox = new JCheckBox
60
62
val JPanel generateTestPanel = new JPanel ();
@@ -134,6 +136,12 @@ class PreferencePanel extends DefaultTraversablePanel {
134
136
rrTab. add(
135
137
runTab. field. label. withText(UtplsqlResources . getString(" PREF_SHOW_INFO_INDICATOR_LABEL" )). component(
136
138
showInfoIndicatorCheckBox))
139
+ rrTab. add(
140
+ runTab. field. label. withText(UtplsqlResources . getString(" PREF_SHOW_SUCCESSFUL_TESTS_LABEL" )). component(
141
+ showSuccessfulTestsCheckBox))
142
+ rrTab. add(
143
+ runTab. field. label. withText(UtplsqlResources . getString(" PREF_SHOW_DISABLED_TESTS_LABEL" )). component(
144
+ showDisabledTestsCheckBox))
137
145
rrTab. add(
138
146
runTab. field. label. withText(UtplsqlResources . getString(" PREF_SHOW_TEST_DESCRIPTION_LABEL" )). component(
139
147
showTestDescriptionCheckBox))
@@ -348,6 +356,8 @@ class PreferencePanel extends DefaultTraversablePanel {
348
356
showInfoCounterCheckBox.selected = info.showInfoCounter
349
357
showWarningIndicatorCheckBox.selected = info.showWarningIndicator
350
358
showInfoIndicatorCheckBox.selected = info.showInfoIndicator
359
+ showSuccessfulTestsCheckBox.selected = info.showSuccessfulTests
360
+ showDisabledTestsCheckBox.selected = info.showDisabledTests
351
361
showTestDescriptionCheckBox.selected = info.showTestDescription
352
362
syncDetailTabCheckBox.selected = info.syncDetailTab
353
363
testPackagePrefixTextField.text = info.testPackagePrefix
@@ -383,6 +393,8 @@ class PreferencePanel extends DefaultTraversablePanel {
383
393
info.showInfoCounter = showInfoCounterCheckBox.selected
384
394
info.showWarningIndicator = showWarningIndicatorCheckBox.selected
385
395
info.showInfoIndicator = showInfoIndicatorCheckBox.selected
396
+ info.showSuccessfulTests = showSuccessfulTestsCheckBox.selected
397
+ info.showDisabledTests = showDisabledTestsCheckBox.selected
386
398
info.showTestDescription = showTestDescriptionCheckBox.selected
387
399
info.syncDetailTab = syncDetailTabCheckBox.selected
388
400
info.testPackagePrefix = testPackagePrefixTextField.text
0 commit comments