You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if I use JSONAssert.assertEquals(...) and if there's an assertion error, AssertionError will be thrown and the code will exit. However, I want my TestNG @Test to do this in loop for several data sets and collect all the assertion errors and throw AssertionError is there are one or more assertion errors (similar to TestNG's SoftAssert). Do note that using a DataProvider is not feasible since I'm using it already for injecting a higher level of test data.
Is there a way I could use this JSONAssert library to assert softly?
The text was updated successfully, but these errors were encountered:
Currently, if I use
JSONAssert.assertEquals(...)
and if there's an assertion error,AssertionError
will be thrown and the code will exit. However, I want my TestNG@Test
to do this in loop for several data sets and collect all the assertion errors and throwAssertionError
is there are one or more assertion errors (similar to TestNG's SoftAssert). Do note that using a DataProvider is not feasible since I'm using it already for injecting a higher level of test data.Is there a way I could use this JSONAssert library to assert softly?
The text was updated successfully, but these errors were encountered: