Uses of Class
org.assertj.core.api.Java6AbstractStandardSoftAssertions
-
Packages that use Java6AbstractStandardSoftAssertions Package Description org.assertj.core.api -
-
Uses of Java6AbstractStandardSoftAssertions in org.assertj.core.api
Subclasses of Java6AbstractStandardSoftAssertions in org.assertj.core.api Modifier and Type Class Description class
AbstractStandardSoftAssertions
class
AutoCloseableSoftAssertions
A version ofSoftAssertions
that uses try-with-resources statement to automatically callSoftAssertions.assertAll()
so that you don't forget to.class
Java6JUnitSoftAssertions
JUnitSoftAssertions rule compatible with Android.class
Java6SoftAssertions
Soft assertions compatible with Android.class
JUnitSoftAssertions
Same asSoftAssertions
, but with the following differences:
First, it's a junit rule, which can be used without having to callassertAll()
, example:class
SoftAssertions
Suppose we have a test case and in it we'd like to make numerous assertions.
-