InstrumentationScope

Added in 4.2.0

enum InstrumentationScope : Enum


Summary

Enum Values

ALL

Instrument the classes of the current project and its library dependencies.

PROJECT

Instrument the classes of the current project only.

Public functions

InstrumentationScope
valueOf(value: String)

Returns the enum constant of this type with the specified name.

Array<InstrumentationScope>

Returns an array containing the constants of this enum type, in the order they're declared.

Enum Values

ALL

val InstrumentationScope.ALLInstrumentationScope

Instrument the classes of the current project and its library dependencies.

This can't be applied to library projects, as instrumenting library dependencies will have no effect on library consumers.

PROJECT

val InstrumentationScope.PROJECTInstrumentationScope

Instrument the classes of the current project only.

Libraries that this project depends on will not be instrumented.

Public functions

valueOf

Added in 4.2.0
fun valueOf(value: String): InstrumentationScope

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws
kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

values

Added in 4.2.0
fun values(): Array<InstrumentationScope>

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.