``` data class TestCaseConfig( val enabled: Bo...
# kotlintest
s
Copy code
data class TestCaseConfig(
    val enabled: Boolean = true,
    val invocations: Int = 1,
    val timeout: Duration = Duration.ofSeconds(600),
    // provides for concurrent execution of the test case
    // only has an effect if invocations > 1
    val threads: Int = 1,
    val tags: Set<Tag> = emptySet(),
    val extensions: List<TestCaseExtension> = emptyList(),
    // an issue number, or link to the issue, can be used by plugins
    val issue: String? = null) {