Beispiel #1
0
		public void MergeWith ()
		{
			TableSectionStyle tss = new TableSectionStyle ();
			tss.Visible = true;

			tss.MergeWith (GetTableSectionStyle ());

			Assert.IsTrue (tss.Visible, "Visible");
		}
Beispiel #2
0
		private TableSectionStyle GetTableSectionStyle ()
		{
			TableSectionStyle tss = new TableSectionStyle ();
			tss.Visible = false;
			return tss;
		}
Beispiel #3
0
		public void CopyFrom_IsEmpty ()
		{
			TestTableSectionStyle c = new TestTableSectionStyle ();
			TableSectionStyle s = new TableSectionStyle ();
			
			s.BorderWidth = Unit.Empty;
			c.CopyFrom (s);
			Assert.IsTrue (c.Empty, "A1");
			
			s.Visible = true;
			c.CopyFrom (s);
			// BUG -- setting Visible doesn't change the "emptyness" of this class ;-)
			Assert.IsTrue (c.Empty, "A2");
		}