public void CellIndexAndObjectSizeAdditionTest2()
        {
            var a = new CellPosition("A1");
            var b = new ObjectSize(2, 2);
            var c = a.Add(b);

            c.RowIndex.Should().Be(3);
            c.ColumnIndex.Should().Be(3);
        }