-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathuser.feature
28 lines (25 loc) · 1.42 KB
/
user.feature
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
Feature: Reporting User Information
Scenario: Override user details in callback in Java app
When I run "UserCallbackScenario" with the defaults
And I wait to receive an error
And the error is valid for the error reporting API version "4" for the "Bugsnag Java" notifier
And the exception "message" equals "UserCallbackScenario"
And the event "user.id" equals "Agent Pink"
And the event "user.email" equals "[email protected]"
And the event "user.name" equals "Zebedee"
Scenario: Override user details in callback in Spring Boot app
When I run spring boot "UserCallbackScenario" with the defaults
And I wait to receive an error
And the error is valid for the error reporting API version "4" for the "Bugsnag Spring" notifier
And the exception "message" equals "UserCallbackScenario"
And the event "user.id" equals "Agent Pink"
And the event "user.email" equals "[email protected]"
And the event "user.name" equals "Zebedee"
Scenario: Override user details in callback in Spring app
When I run plain Spring "UserCallbackScenario" with the defaults
And I wait to receive an error
And the error is valid for the error reporting API version "4" for the "Bugsnag Spring" notifier
And the exception "message" equals "UserCallbackScenario"
And the event "user.id" equals "Agent Pink"
And the event "user.email" equals "[email protected]"
And the event "user.name" equals "Zebedee"