kotest-core / io.kotest.core.extensions / RuntimeTagExtension

RuntimeTagExtension

object RuntimeTagExtension : TagExtension

Allows including/excluding tags at runtime

You can use the properties included and excluded to modify what behavior you should use for specific tests at runtime. Any test tagged with tags in included will be included to run, and any tags in excluded will be excluded.

Properties

excluded

val excluded: MutableSet<Tag>

included

val included: MutableSet<Tag>

Functions

tags

fun tags(): Tags