toStartWith
Expects that the subject of this expectation (a CharSequence) starts with expected.
Return
an Expect for the subject of this expectation.
Since
0.17.0
Samples
expect("ABC") toStartWith "AB"
fails {
expect("ABC") toStartWith "X"
}