TestRunFinishedEvent


class TestRunFinishedEvent : TestPlatformEvent


This event indicates that all tests in a test run are finished running. No more events should be sent after this. This event should always be emitted.

See also
TestRunStartedEvent

to begin a test run.

Summary

Public constructors

TestRunFinishedEvent(
    testRun: TestRunInfo,
    runStatus: TestStatus,
    timeStamp: TimeStamp
)

Creates a TestRunFinishedEvent.

Public functions

Unit
writeToParcel(parcel: Parcel!, i: Int)

Public constructors

TestRunFinishedEvent

TestRunFinishedEvent(
    testRun: TestRunInfo,
    runStatus: TestStatus,
    timeStamp: TimeStamp
)

Creates a TestRunFinishedEvent.

Parameters
testRun: TestRunInfo

the test run that finished.

runStatus: TestStatus

the overall status of the test run.

timeStamp: TimeStamp

the time that this test run finished.

Public functions

writeToParcel

fun writeToParcel(parcel: Parcel!, i: Int): Unit

Public properties

runStatus

val runStatusTestStatus!

testRun

val testRunTestRunInfo!

timeStamp

val timeStampTimeStamp!