Package-level declarations

Types

Link copied to clipboard

Configures the CoroutineContext of the started tests.

Link copied to clipboard
data class CoroutineTimeout(val duration: Duration) : TestConfig.Element

Defines for how long nothing is allowed to happen before the test is automatically stopped.

Link copied to clipboard

Marks a test or an entire suite as disabled.

Link copied to clipboard
data class Tag(val name: String) : TestConfig.Element

Marks the test or an entire suite with a tag.

Link copied to clipboard
sealed interface TestConfig

Generic configuration description.

Properties

Link copied to clipboard

The coroutine context configured for this test through the Context configuration.

Functions

Link copied to clipboard

Finds the elements identified by key in the current TestConfig.

Finds the Element identified by key in the current TestConfig.

Link copied to clipboard
operator fun TestConfig.plus(other: TestConfig): TestConfig

Combines two TestConfig instances.