Ejemplo n.º 1
0
 public void TestMyDeleteEx()
 {
     StringFunction.MyDelete("Hello", 3, 5);
 }
Ejemplo n.º 2
0
 public void TestMyDelete(string init, int pos,
                          int length, string expected)
 {
     Assert.AreEqual(expected, StringFunction.MyDelete(init, pos, length));
 }
Ejemplo n.º 3
0
 public void TestMyDeleteExNull()
 {
     StringFunction.MyDelete(null, 0, 0);
 }