Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added data.testCase.version to EiffelTestCaseStartedEvent #126

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion eiffel-vocabulary/EiffelTestCaseStartedEvent.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,15 @@ __Type:__ String
__Required:__ Yes
__Description:__ The unique identity of the executed test case.

#### data.testCase.version
__Type:__ String
__Required:__ No
__Description:__ The unique version of the executed test case identity. Where this property is not used it is assumed that test cases are not version controlled.

#### data.testCase.uri
__Type:__ String
__Required:__ No
__Description:__ A location where a description of the test case can be retrieved.
__Description:__ A location where a description of the test case can be retrieved. To the extent that multiple versions of the same test case co-exist, this property SHALL identify the exact version executed.

### data.executor
__Type:__ String
Expand Down
3 changes: 2 additions & 1 deletion examples/events/EiffelTestCaseStartedEvent/simple.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"testCase": {
"tracker": "My Test Management System",
"id": "TC-1234",
"uri": "http://tm.company.com/browse/TC-1234"
"version": "42",
"uri": "http://tm.company.com/browse/TC-1234/42"
},
"executor": "My Test Framework",
"recipeId": "aaaaaaaa-bbbb-5ccc-addd-eeeeeeeeeee0",
Expand Down
3 changes: 3 additions & 0 deletions schemas/EiffelTestCaseStartedEvent/1.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@
"id": {
"type": "string"
},
"version": {
"type": "string"
},
"uri": {
"type": "string"
}
Expand Down