Example #1
0
 public void ToStringTest()
 {
     int index = 1;
     Column target = new Column(index);
     string expected = "C2";
     string actual;
     actual = target.ToString();
     Assert.AreEqual(expected, actual);
 }