public void shouldProvideCommonStringMatchers() {
UsingMatchers m = new UsingMatchers() {};
Ensure.that("octopus", m.contains("top"));
Ensure.that("octopus", m.not(m.contains("eight")));
Ensure.that("octopus", m.startsWith("octo"));
Ensure.that("octopus", m.not(m.startsWith("eight")));
Ensure.that("octopus", m.endsWith("pus"));
Ensure.that("octopus", m.not(m.endsWith("eight")));
}