fun <T : CharSequence> Expect<T>.isEmpty(): Expect<T>
(source)Expects that the subject of this
expectation (a CharSequence) CharSequence.kotlin.text.isEmpty.
expect("").isEmpty()
fails {
expect("XYZ").isEmpty()
}
Return
an Expect for the subject of this
expectation.