org.jetbrains.spek.extension.ExtensionRegistry.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spek-junit-platform-engine Show documentation
Show all versions of spek-junit-platform-engine Show documentation
Spek TestEngine for the JUnit Platform
package org.jetbrains.spek.extension
import org.jetbrains.spek.meta.Experimental
import kotlin.reflect.KClass
/**
* @author Ranie Jade Ramiso
*/
@Experimental
interface ExtensionRegistry {
fun getExtension(extension: KClass): T?
}