Enum PreferredAssumptionException

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      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 If none are available, AssertJ throws an IllegalStateException.
      JUNIT4
      org.junit.AssumptionViolatedException - works with JUnit 4
      JUNIT5
      org.opentest4j.TestAbortedException - works with JUnit 5
      TEST_NG
      org.testng.SkipException - works with TestNG
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private PreferredAssumptionException​(java.lang.String assumptionExceptionClassName)  
    • Enum Constant Detail

      • AUTO_DETECT

        public static final PreferredAssumptionException AUTO_DETECT
        AssertJ will try to build the exception to throw in this order:
        1. org.testng.SkipException for TestNG (if available in the classpath)
        2. org.junit.AssumptionViolatedException for JUnit 4 (if available in the classpath)
        3. org.opentest4j.TestAbortedException for JUnit 5
        If none are available, AssertJ throws an IllegalStateException.
    • Field Detail

      • assumptionExceptionClassName

        private final java.lang.String assumptionExceptionClassName
    • Constructor Detail

      • PreferredAssumptionException

        private PreferredAssumptionException​(java.lang.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​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getAssumptionExceptionClass

        public java.lang.Class<?> getAssumptionExceptionClass()
      • loadAssumptionExceptionClass

        private java.util.Optional<java.lang.Class<?>> loadAssumptionExceptionClass()
      • assumptionExceptionClassNotFound

        private java.lang.IllegalStateException assumptionExceptionClassNotFound()