Exemplo n.º 1
0
        public void Table_CellColumnSpanTest()
        {
            TableStyle target = new TableStyle();

            Assert.AreEqual(1, target.CellColumnSpan);

            target.CellColumnSpan = 4;
            Assert.AreEqual(4, target.CellColumnSpan);

            target.RemoveCellColumnSpan();
            Assert.AreEqual(1, target.CellColumnSpan);
        }