Java Spring Cucumber, how can I continue the scenarios, and don't stop upon failure. As I run a Feature file, If a Scenario Failed, all other scenarios are ignored, which isn't the desired behaviour. I don't want to use assertionError, I would like to run a scenario, if it passed I'll log it as success, else log it as failure.
Example: an unstable module that i want to test, i would like to run 100 tests, and if 99 tests will pass, that will answer my demands. but say the first scenatio failed, so 0 out of 100 will pass, which isn't good for me