Ejemplo n.º 1
0
 public void testFill()
 {
     string str = "abcdefAAAAAAmnop";
     StringTheory theory = new StringTheory("abcdefghijklmnop");
     theory.Fill(6, 6, 'A');
     Assert.True(str.Equals(theory.ToString()), "comparison after Fill failed");
 }