run.smt.ktest.db.query.RespondingQuery.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktest-db Show documentation
Show all versions of ktest-db Show documentation
Database intergration for kTest
package run.smt.ktest.db.query
import kotlin.reflect.KClass
interface RespondingQuery {
/**
* Class to map result to
*/
var mapTo: KClass
fun mapTo(clazz: KClass)
}