hfhbd
09/25/2024, 9:50 AM@Test fun fa() = testApplication {
application {
routing {
get {
call.respond("Hello World")
}
}
}
assertEquals(HttpStatusCode.OK, client.get("/foo") {}.status) // 404 Route not found
}
Aleksei Tirman [JB]
09/25/2024, 11:06 AMroute("/")
so the 404 is expectedhfhbd
09/25/2024, 11:07 AMAleksei Tirman [JB]
09/25/2024, 11:08 AM