Skip to content
Advertisement

Tag: assertion

How to show all the failures in Junit Assertions

My requirement is to show all the failures after Junit test run. I tried two things: Assertions.assertEquals –> This stops the execution after first failure, and in test report I see only first failure. assertj.SoftAssertions –> Here execution happens but in test report I do not see any failure message. Any Idea if any other type of assertion or any

Advertisement