Я использую фреймворк для тестирования. У меня три условия @then, если первое условие @then не выполняется, оно не переходит во второе условие @then. Как я могу преодолеть?
@Then("^I check first result$")
public void verifyFirstResult() {
Assert.assertEquals(results.get("first"), true); --> This gets failed as its returning false.
}
@Then("^I check second result$")
public void verifySecondResult() {
Assert.assertEquals(results.get("second"), true); --> This is not even triggering, the execution stops at the first method itself
}
@Then("^I check third result$")
public void verifyThirdResult() {
Assert.assertEquals(results.get("third"), true);
}
Как я могу преодолеть эту проблему?