public void TestSetGetColBandSize() { XWPFDocument doc = new XWPFDocument(); CT_Tbl ctTable = new CT_Tbl(); XWPFTable table = new XWPFTable(ctTable, doc); table.SetColBandSize(16); int sz = table.GetColBandSize(); Assert.AreEqual(16, sz); }