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>
public enum PreferredAssumptionException extends Enum<PreferredAssumptionException>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTO_DETECTAssertJ will try to build the exception to throw in this order:org.testng.SkipExceptionfor TestNG (if available in the classpath)org.junit.AssumptionViolatedExceptionfor JUnit 4 (if available in the classpath)org.opentest4j.TestAbortedExceptionfor JUnit 5 If none are available, AssertJ throws anIllegalStateException.JUNIT4org.junit.AssumptionViolatedException- works with JUnit 4JUNIT5org.opentest4j.TestAbortedException- works with JUnit 5TEST_NGorg.testng.SkipException- works with TestNG
-
Field Summary
Fields Modifier and Type Field Description private StringassumptionExceptionClassName
-
Constructor Summary
Constructors Modifier Constructor Description privatePreferredAssumptionException(String assumptionExceptionClassName)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private IllegalStateExceptionassumptionExceptionClassNotFound()Class<?>getAssumptionExceptionClass()private Optional<Class<?>>loadAssumptionExceptionClass()StringtoString()static PreferredAssumptionExceptionvalueOf(String name)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 Detail
-
TEST_NG
public static final PreferredAssumptionException TEST_NG
org.testng.SkipException- works with TestNG
-
JUNIT4
public static final PreferredAssumptionException JUNIT4
org.junit.AssumptionViolatedException- works with JUnit 4
-
JUNIT5
public static final PreferredAssumptionException JUNIT5
org.opentest4j.TestAbortedException- works with JUnit 5
-
AUTO_DETECT
public static final PreferredAssumptionException AUTO_DETECT
AssertJ will try to build the exception to throw in this order:org.testng.SkipExceptionfor TestNG (if available in the classpath)org.junit.AssumptionViolatedExceptionfor JUnit 4 (if available in the classpath)org.opentest4j.TestAbortedExceptionfor JUnit 5
IllegalStateException.
-
-
Field Detail
-
assumptionExceptionClassName
private final String assumptionExceptionClassName
-
-
Constructor Detail
-
PreferredAssumptionException
private PreferredAssumptionException(String assumptionExceptionClassName)
-
-
Method Detail
-
values
public static PreferredAssumptionException[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PreferredAssumptionException c : PreferredAssumptionException.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PreferredAssumptionException valueOf(String name)
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
public Class<?> getAssumptionExceptionClass()
-
assumptionExceptionClassNotFound
private IllegalStateException assumptionExceptionClassNotFound()
-
toString
public String toString()
- Overrides:
toStringin classEnum<PreferredAssumptionException>
-
-