Class Failure

java.lang.Object
io.vertx.rxjava3.ext.unit.report.Failure
All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate

public class Failure extends Object implements io.vertx.lang.rx.RxDelegate
A failure provides the details of a failure that happened during the execution of a test case.

The failure can be:

  • an assertion failure: an assertion failed
  • an error failure: an expected error occured

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

  • Field Details

    • __TYPE_ARG

      public static final io.vertx.lang.rx.TypeArg<Failure> __TYPE_ARG
  • Constructor Details

    • Failure

      public Failure(Failure delegate)
    • Failure

      public Failure(Object delegate)
  • Method Details

    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getDelegate

      public Failure getDelegate()
      Specified by:
      getDelegate in interface io.vertx.lang.rx.RxDelegate
    • isError

      public boolean isError()
      Returns:
      true if the failure is an error failure otherwise it is an assertion failure
    • message

      public String message()
      Returns:
      the error message
    • stackTrace

      public String stackTrace()
      Returns:
      the stack trace
    • newInstance

      public static Failure newInstance(Failure arg)