Skip to content

Commit

Permalink
closes #134 - new default values of realtime reporter preferences acc…
Browse files Browse the repository at this point in the history
…ording

checked instead of unchecked for
- Show disabled counter?
- Show warning counter?
- Show info counter?
- Show warning indicator?
- Show info indicator?
- Show description (if present)?
  • Loading branch information
PhilippSalvisberg committed Feb 26, 2022
1 parent 32fd6e2 commit 582b8a3
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,39 +172,39 @@ public void setNumberOfRunsInHistory(final int runs) {
}

public boolean isShowDisabledCounter() {
return getHashStructure().getBoolean(KEY_SHOW_DISABLED_COUNTER, false);
return getHashStructure().getBoolean(KEY_SHOW_DISABLED_COUNTER, true);
}

public void setShowDisabledCounter(final boolean showDisabledCounter) {
getHashStructure().putBoolean(KEY_SHOW_DISABLED_COUNTER, showDisabledCounter);
}

public boolean isShowWarningsCounter() {
return getHashStructure().getBoolean(KEY_SHOW_WARNINGS_COUNTER, false);
return getHashStructure().getBoolean(KEY_SHOW_WARNINGS_COUNTER, true);
}

public void setShowWarningsCounter(final boolean showWarningCounter) {
getHashStructure().putBoolean(KEY_SHOW_WARNINGS_COUNTER, showWarningCounter);
}

public boolean isShowInfoCounter() {
return getHashStructure().getBoolean(KEY_SHOW_INFO_COUNTER, false);
return getHashStructure().getBoolean(KEY_SHOW_INFO_COUNTER, true);
}

public void setShowInfoCounter(final boolean showInfoCounter) {
getHashStructure().putBoolean(KEY_SHOW_INFO_COUNTER, showInfoCounter);
}

public boolean isShowWarningIndicator() {
return getHashStructure().getBoolean(KEY_SHOW_WARNING_INDICATOR, false);
return getHashStructure().getBoolean(KEY_SHOW_WARNING_INDICATOR, true);
}

public void setShowWarningIndicator(final boolean showWarningIndicator) {
getHashStructure().putBoolean(KEY_SHOW_WARNING_INDICATOR, showWarningIndicator);
}

public boolean isShowInfoIndicator() {
return getHashStructure().getBoolean(KEY_SHOW_INFO_INDICATOR, false);
return getHashStructure().getBoolean(KEY_SHOW_INFO_INDICATOR, true);
}

public void setShowInfoIndicator(final boolean showInfoIndicator) {
Expand All @@ -228,7 +228,7 @@ public void setShowDisabledTests(final boolean showDisabledTests) {
}

public boolean isShowTestDescription() {
return getHashStructure().getBoolean(KEY_SHOW_TEST_DESCRIPTION, false);
return getHashStructure().getBoolean(KEY_SHOW_TEST_DESCRIPTION, true);
}

public void setShowTestDescription(final boolean showTestDescription) {
Expand Down

0 comments on commit 582b8a3

Please sign in to comment.