Skip to content

Instantly share code, notes, and snippets.

@mathias21
Created July 31, 2020 10:58
Show Gist options
  • Save mathias21/6570ae3f1e43aa2064c40c2f0b7cd290 to your computer and use it in GitHub Desktop.
Save mathias21/6570ae3f1e43aa2064c40c2f0b7cd290 to your computer and use it in GitHub Desktop.
KtorEasy routing testing tooling 1
fun <R> withBaseTestApplication(test: TestApplicationEngine.() -> R) {
withTestApplication({
install(ContentNegotiation) { gson { } }
koinModules?.let {
install(Koin) {
modules(it)
}
}
moduleList()
}) {
test()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment