Example #1
0
 public void TestCopy()
 {
     CellRangeAddress ref1 = new CellRangeAddress(1, 2, 3, 4);
     CellRangeAddress copy = ref1.Copy();
     Assert.AreEqual(ref1.ToString(), copy.ToString());
 }