Skip to content

Commit

Permalink
change test case for default values of realtime reporter preferences …
Browse files Browse the repository at this point in the history
…according #134

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 2681298 commit 32fd6e2
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ public void defaultValues() {
Assert.assertFalse(model.isCheckRunUtplsqlTest());
Assert.assertFalse(model.isUseSmartTimes());
Assert.assertEquals(10, model.getNumberOfRunsInHistory());
Assert.assertFalse(model.isShowDisabledCounter());
Assert.assertFalse(model.isShowWarningsCounter());
Assert.assertFalse(model.isShowInfoCounter());
Assert.assertFalse(model.isShowWarningIndicator());
Assert.assertFalse(model.isShowInfoIndicator());
Assert.assertTrue(model.isShowDisabledCounter());
Assert.assertTrue(model.isShowWarningsCounter());
Assert.assertTrue(model.isShowInfoCounter());
Assert.assertTrue(model.isShowWarningIndicator());
Assert.assertTrue(model.isShowInfoIndicator());
Assert.assertTrue(model.isShowSuccessfulTests());
Assert.assertTrue(model.isShowDisabledTests());
Assert.assertFalse(model.isShowTestDescription());
Assert.assertTrue(model.isShowTestDescription());
Assert.assertTrue(model.isSyncDetailTab());
Assert.assertTrue(model.isShowSuites());
Assert.assertEquals("test_", model.getTestPackagePrefix());
Expand Down

0 comments on commit 32fd6e2

Please sign in to comment.