org.http4k.strikt.uri.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-testing-strikt Show documentation
Show all versions of http4k-testing-strikt Show documentation
A set of Strikt matchers for common http4k types
package org.http4k.strikt
import org.http4k.core.Uri
import strikt.api.Assertion
val Assertion.Builder.path get() = get(Uri::path)
val Assertion.Builder.query get() = get(Uri::query)
val Assertion.Builder.authority get() = get(Uri::authority)
val Assertion.Builder.host get() = get(Uri::host)
val Assertion.Builder.port get() = get(Uri::port)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy