com.producement.test.fixture.With.kt Maven / Gradle / Ivy
package com.producement.test.fixture
import kotlin.reflect.KClass
annotation class WithAll(val value: Array)
@Repeatable
@Suppress("DEPRECATED_JAVA_ANNOTATION")
@java.lang.annotation.Repeatable(WithAll::class)
annotation class With(
val value: KClass
)