public void testBeginsWith()
 {
     StringTheory theory = new StringTheory("0123456789");
     Assert.True(theory.BeginsWith("0123") && !theory.BeginsWith("xxx"), "string starts differently?");
 }