Enum Class AssertionLogMessageType

java.lang.Object
java.lang.Enum<AssertionLogMessageType>
de.qytera.qtaf.core.log.model.message.AssertionLogMessageType
All Implemented Interfaces:
Serializable, Comparable<AssertionLogMessageType>, Constable

public enum AssertionLogMessageType extends Enum<AssertionLogMessageType>
All TestNG Assertion Types.
See Also:
  • Enum Constant Details

    • ASSERT_EQUALS

      public static final AssertionLogMessageType ASSERT_EQUALS
      Used for asserting object equality.
    • ASSERT_EQUALS_DEEP

      public static final AssertionLogMessageType ASSERT_EQUALS_DEEP
      Used for asserting deep object equality.
    • ASSERT_EQUALS_NO_ORDER

      public static final AssertionLogMessageType ASSERT_EQUALS_NO_ORDER
      Used for asserting equality regardless of objects' internal ordering.
    • ASSERT_FALSE

      public static final AssertionLogMessageType ASSERT_FALSE
      Used for asserting false.
    • ASSERT_NOT_EQUALS

      public static final AssertionLogMessageType ASSERT_NOT_EQUALS
      Used for asserting object inequality.
    • ASSERT_NOT_EQUALS_DEEP

      public static final AssertionLogMessageType ASSERT_NOT_EQUALS_DEEP
      Used for asserting deep object inequality.
    • ASSERT_NOT_NULL

      public static final AssertionLogMessageType ASSERT_NOT_NULL
      Used for asserting objects are not null.
    • ASSERT_NOT_SAME

      public static final AssertionLogMessageType ASSERT_NOT_SAME
      Used for asserting that objects do not share the same reference.
    • ASSERT_NULL

      public static final AssertionLogMessageType ASSERT_NULL
      Used for asserting objects are null.
    • ASSERT_SAME

      public static final AssertionLogMessageType ASSERT_SAME
      Used for asserting that objects share the same reference.
    • ASSERT_TRUE

      public static final AssertionLogMessageType ASSERT_TRUE
      Used for asserting true.
  • Method Details

    • values

      public static AssertionLogMessageType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AssertionLogMessageType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null