initial commit
This commit is contained in:
31
test/ApplicationTest.kt
Normal file
31
test/ApplicationTest.kt
Normal file
@@ -0,0 +1,31 @@
|
||||
package com.kmalbz
|
||||
|
||||
import io.ktor.application.*
|
||||
import io.ktor.response.*
|
||||
import io.ktor.request.*
|
||||
import io.ktor.routing.*
|
||||
import io.ktor.http.*
|
||||
import io.ktor.gson.*
|
||||
import io.ktor.features.*
|
||||
import io.ktor.client.*
|
||||
import io.ktor.client.engine.apache.*
|
||||
import com.fasterxml.jackson.databind.*
|
||||
import io.ktor.jackson.*
|
||||
import io.ktor.auth.*
|
||||
import kotlin.reflect.*
|
||||
import java.util.*
|
||||
import io.ktor.swagger.experimental.*
|
||||
import kotlin.test.*
|
||||
import io.ktor.server.testing.*
|
||||
|
||||
class ApplicationTest {
|
||||
@Test
|
||||
fun testRoot() {
|
||||
withTestApplication({ module(testing = true) }) {
|
||||
handleRequest(HttpMethod.Get, "/").apply {
|
||||
assertEquals(HttpStatusCode.OK, response.status())
|
||||
assertEquals("HELLO WORLD!", response.content)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user