TestArgs

data class TestArgs(val commands: Output<List<CommandArgs>>, val isActive: Output<Boolean>? = null, val testType: Output<Either<String, TestType>>) : ConvertibleToJava<TestArgs>

The definition of a Test.

Constructors

Link copied to clipboard
constructor(commands: Output<List<CommandArgs>>, isActive: Output<Boolean>? = null, testType: Output<Either<String, TestType>>)

Properties

Link copied to clipboard
val commands: Output<List<CommandArgs>>

The commands used in the test.

Link copied to clipboard
val isActive: Output<Boolean>? = null

Indicates if this test is active.It doesn't schedule test for not active Test.

Link copied to clipboard
val testType: Output<Either<String, TestType>>

The type of the test.

Functions

Link copied to clipboard
open override fun toJava(): TestArgs