|
|
fun URL.shouldBeOpaque(): Unit |
|
|
infix fun URL.shouldHaveAuthority(authority: String): Unit |
|
|
infix fun URL.shouldHaveHost(host: String): Unit |
|
|
infix fun URL.shouldHaveParameter(key: String): Unit |
|
|
fun URL.shouldHaveParameterValue(key: String, value: String): Unit |
|
|
infix fun URL.shouldHavePath(path: String): Unit |
|
|
infix fun URL.shouldHavePort(port: Int): Unit |
|
|
infix fun URL.shouldHaveProtocol(protocol: String): Unit |
|
|
infix fun URL.shouldHaveQuery(q: String): Unit |
|
|
infix fun URL.shouldHaveRef(ref: String): Unit |
|
|
fun URL.shouldNotBeOpaque(): Unit |
|
|
infix fun URL.shouldNotHaveAuthority(authority: String): Unit |
|
|
infix fun URL.shouldNotHaveHost(host: String): Unit |
|
|
infix fun URL.shouldNotHaveParameter(key: String): Unit |
|
|
fun URL.shouldNotHaveParameterValue(key: String, value: String): Unit |
|
|
infix fun URL.shouldNotHavePath(path: String): Unit |
|
|
infix fun URL.shouldNotHavePort(port: Int): Unit |
|
|
infix fun URL.shouldNotHaveProtocol(protocol: String): Unit |
|
|
infix fun URL.shouldNotHaveQuery(q: String): Unit |
|
|
infix fun URL.shouldNotHaveRef(ref: String): Unit |