Exemplo n.º 1
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");
        }
Exemplo n.º 2
0
        public void CopyFrom_Empty()
        {
            TestTableSectionStyle tss = new TestTableSectionStyle();

            tss.CopyFrom(new TableSectionStyle());
            DefaultProperties(tss);
        }
Exemplo n.º 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");
		}
Exemplo n.º 4
0
		public void CopyFrom_Empty ()
		{
			TestTableSectionStyle tss = new TestTableSectionStyle ();
			tss.CopyFrom (new TableSectionStyle ());
			DefaultProperties (tss);
		}