@@ -172,39 +172,39 @@ public void setNumberOfRunsInHistory(final int runs) {
172172 }
173173
174174 public boolean isShowDisabledCounter () {
175- return getHashStructure ().getBoolean (KEY_SHOW_DISABLED_COUNTER , false );
175+ return getHashStructure ().getBoolean (KEY_SHOW_DISABLED_COUNTER , true );
176176 }
177177
178178 public void setShowDisabledCounter (final boolean showDisabledCounter ) {
179179 getHashStructure ().putBoolean (KEY_SHOW_DISABLED_COUNTER , showDisabledCounter );
180180 }
181181
182182 public boolean isShowWarningsCounter () {
183- return getHashStructure ().getBoolean (KEY_SHOW_WARNINGS_COUNTER , false );
183+ return getHashStructure ().getBoolean (KEY_SHOW_WARNINGS_COUNTER , true );
184184 }
185185
186186 public void setShowWarningsCounter (final boolean showWarningCounter ) {
187187 getHashStructure ().putBoolean (KEY_SHOW_WARNINGS_COUNTER , showWarningCounter );
188188 }
189189
190190 public boolean isShowInfoCounter () {
191- return getHashStructure ().getBoolean (KEY_SHOW_INFO_COUNTER , false );
191+ return getHashStructure ().getBoolean (KEY_SHOW_INFO_COUNTER , true );
192192 }
193193
194194 public void setShowInfoCounter (final boolean showInfoCounter ) {
195195 getHashStructure ().putBoolean (KEY_SHOW_INFO_COUNTER , showInfoCounter );
196196 }
197197
198198 public boolean isShowWarningIndicator () {
199- return getHashStructure ().getBoolean (KEY_SHOW_WARNING_INDICATOR , false );
199+ return getHashStructure ().getBoolean (KEY_SHOW_WARNING_INDICATOR , true );
200200 }
201201
202202 public void setShowWarningIndicator (final boolean showWarningIndicator ) {
203203 getHashStructure ().putBoolean (KEY_SHOW_WARNING_INDICATOR , showWarningIndicator );
204204 }
205205
206206 public boolean isShowInfoIndicator () {
207- return getHashStructure ().getBoolean (KEY_SHOW_INFO_INDICATOR , false );
207+ return getHashStructure ().getBoolean (KEY_SHOW_INFO_INDICATOR , true );
208208 }
209209
210210 public void setShowInfoIndicator (final boolean showInfoIndicator ) {
@@ -228,7 +228,7 @@ public void setShowDisabledTests(final boolean showDisabledTests) {
228228 }
229229
230230 public boolean isShowTestDescription () {
231- return getHashStructure ().getBoolean (KEY_SHOW_TEST_DESCRIPTION , false );
231+ return getHashStructure ().getBoolean (KEY_SHOW_TEST_DESCRIPTION , true );
232232 }
233233
234234 public void setShowTestDescription (final boolean showTestDescription ) {
0 commit comments