lbastil
lbastil
@sskorol: I think in #529 everything is explained quite well: **What is the current behavior?** current step, which has failed soft assert in it, does not fail. The case fails...
@sskorol : if I can I would try to support the feature enhancement. Can you give me some advise about entry points where to start? I guess there is a...
There is a very old similar issue: https://github.com/allure-framework/allure-java/issues/19
I would really appreciate an enhancement here. I guess using soft assertions, either from testng directly or via assertj or fest is not such an rare scenario. I tested both...
On a very general level an example would be: ```java public class MyTestClass { private SoftAssert softAssert; @BeforeMethod(alwaysRun = true) public void initialize(Method method) { softAssert = new SoftAssert(); }...