Package org.assertj.core.configuration
Enum PreferredAssumptionException
java.lang.Object
java.lang.Enum<PreferredAssumptionException>
org.assertj.core.configuration.PreferredAssumptionException
- All Implemented Interfaces:
Serializable
,Comparable<PreferredAssumptionException>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAssertJ will try to build the exception to throw in this order:org.testng.SkipException
for TestNG (if available in the classpath)org.junit.AssumptionViolatedException
for JUnit 4 (if available in the classpath)org.opentest4j.TestAbortedException
for JUnit 5 If none are available, AssertJ throws anIllegalStateException
.org.junit.AssumptionViolatedException
- works with JUnit 4org.opentest4j.TestAbortedException
- works with JUnit 5org.testng.SkipException
- works with TestNG -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
PreferredAssumptionException
(String assumptionExceptionClassName) -
Method Summary
Modifier and TypeMethodDescriptionprivate IllegalStateException
Class
<?> toString()
static PreferredAssumptionException
Returns the enum constant of this type with the specified name.static PreferredAssumptionException[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TEST_NG
org.testng.SkipException
- works with TestNG -
JUNIT4
org.junit.AssumptionViolatedException
- works with JUnit 4 -
JUNIT5
org.opentest4j.TestAbortedException
- works with JUnit 5 -
AUTO_DETECT
AssertJ will try to build the exception to throw in this order:org.testng.SkipException
for TestNG (if available in the classpath)org.junit.AssumptionViolatedException
for JUnit 4 (if available in the classpath)org.opentest4j.TestAbortedException
for JUnit 5
IllegalStateException
.
-
-
Field Details
-
assumptionExceptionClassName
-
-
Constructor Details
-
PreferredAssumptionException
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getAssumptionExceptionClass
-
loadAssumptionExceptionClass
-
assumptionExceptionClassNotFound
-
toString
- Overrides:
toString
in classEnum<PreferredAssumptionException>
-