vertx / io.vertx.reactivex.ext.unit.report / TestResult

TestResult

open class TestResult

The result of a test. NOTE: This class has been automatically generated from the io.vertx.ext.unit.report.TestResult non RX-ified interface using Vert.x codegen.

Constructors

<init>

TestResult(delegate: TestResult)

Properties

__TYPE_ARG

static val __TYPE_ARG: TypeArg<TestResult>

Functions

beginTime

open fun beginTime(): Long

The time at which the test began in millis.

durationTime

open fun durationTime(): Long

How long the test lasted in millis.

equals

open fun equals(other: Any?): Boolean

failed

open fun failed(): Boolean

Did it fail?

failure

open fun failure(): Failure

An exception describing failure, null if the test succeeded.

getDelegate

open fun getDelegate(): TestResult

hashCode

open fun hashCode(): Int

name

open fun name(): String

The test description, may be null if none was provided.

newInstance

open static fun newInstance(arg: TestResult): TestResult

succeeded

open fun succeeded(): Boolean

Did it succeed?

toString

open fun toString(): String