All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.http4k.hamkrest.httpTransaction.kt Maven / Gradle / Ivy

There is a newer version: 5.31.0.0
Show newest version
package org.http4k.hamkrest

import com.natpryce.hamkrest.Matcher
import com.natpryce.hamkrest.has
import org.http4k.core.HttpTransaction
import org.http4k.core.Request
import org.http4k.core.Response

fun hasRequest(matcher: Matcher) = has("Request", { tx: HttpTransaction -> tx.request }, matcher)
fun hasResponse(matcher: Matcher) = has("Response", { tx: HttpTransaction -> tx.response }, matcher)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy