Closed ronyb closed 7 years ago
If report.log("some message", Status.failure) was invoked during the test, the TestNG test should continue execution, but it should end with a failure status.
report.log("some message", Status.failure)
We'll use TestNG's SoftAssert to implement this.
SoftAssert
Merge #137
The current implementation causes the teardown phase to be skipped. There is a need for another solution. Rolling back and reopening the issue.
If
report.log("some message", Status.failure)
was invoked during the test, the TestNG test should continue execution, but it should end with a failure status.We'll use TestNG's
SoftAssert
to implement this.