|
|
fun URI.shouldBeOpaque(): Unit |
|
|
infix fun URI.shouldHaveAuthority(authority: String): Unit |
|
|
infix fun URI.shouldHaveFragment(fragment: String): Unit |
|
|
infix fun URI.shouldHaveHost(host: String): Unit |
|
|
infix fun URI.shouldHaveParameter(key: String): Unit |
|
|
infix fun URI.shouldHavePath(path: String): Unit |
|
|
infix fun URI.shouldHavePort(port: Int): Unit |
|
|
infix fun URI.shouldHaveQuery(q: String): Unit |
|
|
infix fun URI.shouldHaveScheme(scheme: String): Unit |
|
|
fun URI.shouldNotBeOpaque(): Unit |
|
|
infix fun URI.shouldNotHaveAuthority(authority: String): Unit |
|
|
infix fun URI.shouldNotHaveFragment(fragment: String): Unit |
|
|
infix fun URI.shouldNotHaveHost(host: String): Unit |
|
|
infix fun URI.shouldNotHaveParameter(key: String): Unit |
|
|
infix fun URI.shouldNotHavePath(path: String): Unit |
|
|
infix fun URI.shouldNotHavePort(port: Int): Unit |
|
|
infix fun URI.shouldNotHaveQuery(q: String): Unit |
|
|
infix fun URI.shouldNotHaveScheme(scheme: String): Unit |