Ignored
Marks a test or an entire suite as disabled.
Example
Mark a suite as disabled:
suite("Suite name", Ignored) {
// …
}
Content copied to clipboard
Mark a test as disabled:
test("Some kind of test", config = Ignored) {
// …
}
Content copied to clipboard
Properties
Link copied to clipboard
The coroutine context configured for this test through the Context configuration.
Link copied to clipboard
Marker for the uniqueness of the elements denoted by this key.
Functions
Link copied to clipboard
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.
Link copied to clipboard
Combines two TestConfig instances.