A test automation library based on common other best practice open source libraries. It adds missing functionalities but does not reinvent the wheel. Just glues stuff together nicely and adds some sprinkles.
MIT License
80
stars
11
forks
source link
Reporting: Display Test Data in Allure Report #260
In our current report the used test data is somewhat hidden in different steps of each test. It would be great to have an overview for the used test data at each test.
User Story
As a report reviewer,
I want to be able to see all used test data of a test quickly at one place
so that I don't waste time looking for specifics of each test to reproduce it manually
Functional Requirements
Design:
[x] Add a Container with the used Test Data to our allure Report
[x] The container should contain all data used for this specific test
[x] The container should be closed by default (optional)
[x] The container should show a useful representation of the given Data
Code:
[x] This feature should be able to be toggled via our configuration
[x] The test data should be gathered from the @DataItem and all DataUtils.get() calls
[x] The test data needs to provide a feature to add values at runtime (e.g. we inject random email addresses in different ways in different test suites. The person who writes those tests, needs to have an update method to add more test data)
Documentation Requirements
[x] Document this feature in our test data report section of the wiki and include a screenshot of an allure report with the open test data view
[x] Document the according property to disable this feature.
[x] Document the possibility to add data at runtime
Test Requirements
[x] Smoke Test the feature with all supported formats in an external test suite (e.g. neodymium example)
[ ] Write Unit Test checking if the data is handed over to the report
Quick Description
In our current report the used test data is somewhat hidden in different steps of each test. It would be great to have an overview for the used test data at each test.
User Story
As a report reviewer, I want to be able to see all used test data of a test quickly at one place so that I don't waste time looking for specifics of each test to reproduce it manually
Functional Requirements
Design:
Code:
@DataItem
and allDataUtils.get()
callsDocumentation Requirements
test datareport section of the wiki and include a screenshot of an allure report with the open test data viewTest Requirements