ServerTest

abstract class ServerTest(    clientAdapter: () -> HttpClientPort,     serverAdapter: () -> HttpServerPort,     serverSettings: HttpServerSettings = HttpServerSettings(),     handler: HttpHandler = Get { ok() },     options: Collection<String>,     features: Set<HttpFeature>) : BaseTest

Constructors

Link copied to clipboard
constructor(    clientAdapter: () -> HttpClientPort,     serverAdapter: () -> HttpServerPort,     serverSettings: HttpServerSettings = HttpServerSettings(),     handler: HttpHandler = Get { ok() },     options: Collection<String>,     features: Set<HttpFeature>)

Functions

Link copied to clipboard
Link copied to clipboard
@Test
fun serverOptions()
Link copied to clipboard
@BeforeAll
fun startUp()