Package-level declarations

Types

Link copied to clipboard
data class InstrumentOptions(val pkg: List<String> = emptyList(), val clazz: List<String> = emptyList(), val functional: Boolean? = null, val unit: Boolean? = null, val filterSize: InstrumentationSizeOption? = null, val performance: Boolean? = null, val debug: Boolean? = null, val log: Boolean? = null, val emma: Boolean? = null, val coverageFile: String? = null, val overrides: Map<String, String> = mapOf())
Link copied to clipboard
data class TestAssumptionFailed(val id: TestIdentifier, val stackTrace: String) : TestEvent
Link copied to clipboard
data class TestEnded(val id: TestIdentifier, val metrics: Map<String, String>) : TestEvent
Link copied to clipboard
sealed class TestEvent
Link copied to clipboard
data class TestFailed(val id: TestIdentifier, val stackTrace: String) : TestEvent
Link copied to clipboard
data class TestIdentifier(val className: String, val testName: String)
Link copied to clipboard
data class TestIgnored(val id: TestIdentifier) : TestEvent
Link copied to clipboard
data class TestLogcat(val id: TestIdentifier, val log: String)
Link copied to clipboard
data class TestRunEnded(val elapsedTimeMillis: Long, val metrics: Map<String, String>) : TestEvent
Link copied to clipboard
data class TestRunFailed(val error: String) : TestEvent
Link copied to clipboard
data class TestRunFailing(val error: String, val stackTrace: String) : TestEvent
Link copied to clipboard
class TestRunnerRequest(testPackage: String, instrumentOptions: InstrumentOptions, supportedFeatures: List<Feature>, coroutineScope: CoroutineScope, runnerClass: String = "android.support.test.runner.AndroidJUnitRunner", noHiddenApiChecks: Boolean = false, noWindowAnimations: Boolean = false, noIsolatedStorage: Boolean = false, userId: Int? = null, abi: String? = null, profilingOutputPath: String? = null, outputLogPath: String? = null, protobuf: Boolean = false, dumpFile: File? = null, socketIdleTimeout: Long? = Long.MAX_VALUE) : AsyncCompatShellCommandRequest<List<TestEvent>>
Link copied to clipboard
data class TestRunStartedEvent(val testCount: Int) : TestEvent
Link copied to clipboard
data class TestRunStopped(val elapsedTimeMillis: Long) : TestEvent
Link copied to clipboard
data class TestStarted(val id: TestIdentifier) : TestEvent