public void testContains() { StringTheory theory = new StringTheory("0123456789"); Assert.True(theory.Contains("1234") && !theory.Contains("xxx"), "string doesn't contain that?"); }