strikt
strikt copied to clipboard
Add `String.doesNotContain`
I jsut realized an assertion on String.contains("") exist.
I think it is usefull to add also an String.doesNotContain("").
expectThat("Something").contains("S") // true
expectThat("Something").doesNotContain("S") // false
You should be able to do .not().contains("string") or .not { contains("string") }