Beispiel #1
0
        public virtual void GetMarginLeftTest()
        {
            float expLeftMargin = 88;
            Style style         = new Style();

            NUnit.Framework.Assert.IsNull(style.GetMarginLeft());
            style.SetMarginLeft(expLeftMargin);
            NUnit.Framework.Assert.AreEqual(UnitValue.CreatePointValue(expLeftMargin), style.GetMarginLeft());
        }