@@ -172,39 +172,39 @@ public void setNumberOfRunsInHistory(final int runs) {
172
172
}
173
173
174
174
public boolean isShowDisabledCounter () {
175
- return getHashStructure ().getBoolean (KEY_SHOW_DISABLED_COUNTER , false );
175
+ return getHashStructure ().getBoolean (KEY_SHOW_DISABLED_COUNTER , true );
176
176
}
177
177
178
178
public void setShowDisabledCounter (final boolean showDisabledCounter ) {
179
179
getHashStructure ().putBoolean (KEY_SHOW_DISABLED_COUNTER , showDisabledCounter );
180
180
}
181
181
182
182
public boolean isShowWarningsCounter () {
183
- return getHashStructure ().getBoolean (KEY_SHOW_WARNINGS_COUNTER , false );
183
+ return getHashStructure ().getBoolean (KEY_SHOW_WARNINGS_COUNTER , true );
184
184
}
185
185
186
186
public void setShowWarningsCounter (final boolean showWarningCounter ) {
187
187
getHashStructure ().putBoolean (KEY_SHOW_WARNINGS_COUNTER , showWarningCounter );
188
188
}
189
189
190
190
public boolean isShowInfoCounter () {
191
- return getHashStructure ().getBoolean (KEY_SHOW_INFO_COUNTER , false );
191
+ return getHashStructure ().getBoolean (KEY_SHOW_INFO_COUNTER , true );
192
192
}
193
193
194
194
public void setShowInfoCounter (final boolean showInfoCounter ) {
195
195
getHashStructure ().putBoolean (KEY_SHOW_INFO_COUNTER , showInfoCounter );
196
196
}
197
197
198
198
public boolean isShowWarningIndicator () {
199
- return getHashStructure ().getBoolean (KEY_SHOW_WARNING_INDICATOR , false );
199
+ return getHashStructure ().getBoolean (KEY_SHOW_WARNING_INDICATOR , true );
200
200
}
201
201
202
202
public void setShowWarningIndicator (final boolean showWarningIndicator ) {
203
203
getHashStructure ().putBoolean (KEY_SHOW_WARNING_INDICATOR , showWarningIndicator );
204
204
}
205
205
206
206
public boolean isShowInfoIndicator () {
207
- return getHashStructure ().getBoolean (KEY_SHOW_INFO_INDICATOR , false );
207
+ return getHashStructure ().getBoolean (KEY_SHOW_INFO_INDICATOR , true );
208
208
}
209
209
210
210
public void setShowInfoIndicator (final boolean showInfoIndicator ) {
@@ -228,7 +228,7 @@ public void setShowDisabledTests(final boolean showDisabledTests) {
228
228
}
229
229
230
230
public boolean isShowTestDescription () {
231
- return getHashStructure ().getBoolean (KEY_SHOW_TEST_DESCRIPTION , false );
231
+ return getHashStructure ().getBoolean (KEY_SHOW_TEST_DESCRIPTION , true );
232
232
}
233
233
234
234
public void setShowTestDescription (final boolean showTestDescription ) {
0 commit comments