-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathignored_reports.feature
More file actions
29 lines (22 loc) · 1.15 KB
/
ignored_reports.feature
File metadata and controls
29 lines (22 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Feature: Reports are ignored
Scenario: Exception classname ignored in plain Java app
When I run "IgnoredExceptionScenario" with the defaults
Then I should receive no errors
Scenario: Exception classname ignored in spring boot app
When I run spring boot "IgnoredExceptionScenario" with the defaults
Then I should receive no errors
Scenario: Exception classname ignored in plain spring app
When I run plain Spring "IgnoredExceptionScenario" with the defaults
Then I should receive no errors
Scenario: Test logback appender with ignored error class
When I run "LogbackScenario" with logback config "ignored_class_config.xml"
Then I should receive no errors
Scenario: Disabled Exception Handler in plain Java app
When I run "DisableAutoNotifyScenario" with the defaults
Then I should receive no errors
Scenario: Disabled Exception Handler in spring boot app
When I run spring boot "DisableAutoNotifyScenario" with the defaults
Then I should receive no errors
Scenario: Disabled Exception Handler in plain spring app
When I run plain Spring "DisableAutoNotifyScenario" with the defaults
Then I should receive no errors