public void testTiltForward()
 {
     StringTheory theory = new StringTheory(@"http:\\www.google.com\folder\subfolder\file.html");
     StringTheory theory2 = new StringTheory("http://www.google.com/folder/subfolder/file.html");
     Assert.True(theory.TiltForward() == 5, "Reported number of tilted slashes was wrong.");
     Assert.True(theory.Equals(theory2), "Slashes aren't all tilted properly.");
 }