@@ -46,6 +46,8 @@ class PreferenceModel extends HashStructureAdapter {
4646 static final String KEY_SHOW_INFO_COUNTER = " showInfoCounter"
4747 static final String KEY_SHOW_WARNING_INDICATOR = " showWarningIndicator"
4848 static final String KEY_SHOW_INFO_INDICATOR = " showInfoIndicator"
49+ static final String KEY_SHOW_SUCCESSFUL_TESTS = " showSuccessfulTests"
50+ static final String KEY_SHOW_DISABLED_TESTS = " showDisabledTests"
4951 static final String KEY_SHOW_TEST_DESCRIPTION = " showTestDescription"
5052 static final String KEY_SYNC_DETAIL_TAB = " syncDetailTab"
5153 static final String KEY_TEST_PACKAGE_PREFIX = " testPackagePrefix"
@@ -166,6 +168,22 @@ class PreferenceModel extends HashStructureAdapter {
166168 def setShowInfoIndicator (boolean showInfoIndicator ) {
167169 getHashStructure. putBoolean(PreferenceModel . KEY_SHOW_INFO_INDICATOR , showInfoIndicator)
168170 }
171+
172+ def isShowSuccessfulTests () {
173+ return getHashStructure. getBoolean(PreferenceModel . KEY_SHOW_SUCCESSFUL_TESTS , true )
174+ }
175+
176+ def setShowSuccessfulTests (boolean showSuccessfulTests ) {
177+ getHashStructure. putBoolean(PreferenceModel . KEY_SHOW_SUCCESSFUL_TESTS , showSuccessfulTests)
178+ }
179+
180+ def isShowDisabledTests () {
181+ return getHashStructure. getBoolean(PreferenceModel . KEY_SHOW_DISABLED_TESTS , true )
182+ }
183+
184+ def setShowDisabledTests (boolean showDisabledTests ) {
185+ getHashStructure. putBoolean(PreferenceModel . KEY_SHOW_DISABLED_TESTS , showDisabledTests)
186+ }
169187
170188 def isShowTestDescription () {
171189 return getHashStructure. getBoolean(PreferenceModel . KEY_SHOW_TEST_DESCRIPTION , false )
0 commit comments