Suite • opensavvy.prepared.suite.config • Ignored
Ignored¶
object Ignored : TestConfig.Element, TestConfig.Key.Unique<Ignored>
Marks a test or an entire suite as disabled.
Example¶
Mark a suite as disabled:
Mark a test as disabled:
Properties¶
coroutineContext
¶
The coroutine context configured for this test through the Context
configuration.
key
¶
The identifier for this test configuration element.
uniqueness
¶
open override val uniqueness: TestConfig.Uniqueness.Unique
Marker for the uniqueness of the elements denoted by this key.
Functions¶
get
¶
operator fun <E : TestConfig.Element> TestConfig.get(key: TestConfig.Key<E, TestConfig.Uniqueness.Multi>): List<E>
Finds the elements
identified by key
in the current TestConfig
.
operator fun <E : TestConfig.Element> TestConfig.get(key: TestConfig.Key<E, TestConfig.Uniqueness.Unique>): E?
Finds the Element
identified by key
in the current TestConfig
.
plus
¶
operator fun TestConfig.plus(other: TestConfig): TestConfig
Combines two TestConfig
instances.