EnabledTest

@Target(allowedTargets = [AnnotationTarget.FUNCTION])
annotation class EnabledTest

Marks a function as a test to be run

Example usage:

@EnabledTest
fun testTests() {
...
}
...
runEnabledTests(this) // will include executing testTests