TestRunFinishedEvent


class TestRunFinishedEvent : TestRunEvent


Denotes that the test ended with a TEST_RUN_FINISHED event.

Summary

Public constructors

TestRunFinishedEvent(
    count: Int,
    ignoreCount: Int,
    runTime: Long,
    failures: (Mutable)List<FailureInfo!>
)

Creates a TestRunFinishedEvent.

Public functions

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

Public constructors

TestRunFinishedEvent

TestRunFinishedEvent(
    count: Int,
    ignoreCount: Int,
    runTime: Long,
    failures: (Mutable)List<FailureInfo!>
)

Creates a TestRunFinishedEvent.

Parameters
count: Int

total number of tests run

ignoreCount: Int

the number of tests ignored during the run

runTime: Long

the number of milliseconds it took to run the entire suite to run

failures: (Mutable)List<FailureInfo!>

the tests that failed

Public functions

writeToParcel

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

Public properties

count

val countInt

failures

val failures: (Mutable)List<FailureInfo!>

ignoreCount

val ignoreCountInt

runTime

val runTimeLong