public void MergeWith_Self() { TableItemStyle tis = GetTableItemStyle(); tis.MergeWith(tis); CheckTableStyle(tis); }
public void MergeWith_Null() { TableItemStyle tis = GetTableItemStyle(); tis.MergeWith(null); CheckTableStyle(tis); }
public void MergeWith() { TableItemStyle tis = new TableItemStyle(); tis.HorizontalAlign = HorizontalAlign.Left; tis.VerticalAlign = VerticalAlign.Top; tis.Wrap = true; tis.MergeWith(GetTableItemStyle()); Assert.AreEqual(HorizontalAlign.Left, tis.HorizontalAlign, "HorizontalAlign"); Assert.AreEqual(VerticalAlign.Top, tis.VerticalAlign, "VerticalAlign"); Assert.IsTrue(tis.Wrap, "Wrap"); }