You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Purpose: See test success/failures via a file report that can be stored as an artifact in CI.
As the AcceptanceMark test suite runs, we want to generate a test report.
One way of doing this is to extend the generated test methods to pipe the results (success/failure with details) into an HTML file with green/red tests similar to the Fitnesse Test Report.
One advantage of this is that if the test suite crashed, all test results up to that point will have been already written into a file. NOTE how to deal with tests running concurrently? Need to ensure the report file is written atomically and in order
The generated test methods are the ideal place for this as they have knowledge of the inputs, outputs and expected values for each test.
The text was updated successfully, but these errors were encountered:
Purpose: See test success/failures via a file report that can be stored as an artifact in CI.
As the AcceptanceMark test suite runs, we want to generate a test report.
One way of doing this is to extend the generated test methods to pipe the results (success/failure with details) into an HTML file with green/red tests similar to the Fitnesse Test Report.
One advantage of this is that if the test suite crashed, all test results up to that point will have been already written into a file. NOTE how to deal with tests running concurrently? Need to ensure the report file is written atomically and in order
The generated test methods are the ideal place for this as they have knowledge of the inputs, outputs and expected values for each test.
The text was updated successfully, but these errors were encountered: