TestSuccess

data class TestSuccess<T>(val testCase: TestCase<T>, val duration: Duration) : TestExecutionResult<T>

Represents a successful test execution.

Report a problem

Constructors

Link copied to clipboard
constructor(testCase: TestCase<T>, duration: Duration)

Properties

Link copied to clipboard
open override val duration: Duration

The duration of the test execution.

Link copied to clipboard
open override val testCase: TestCase<T>

The test case associated with this execution.