Esempio n. 1
0
        public virtual void GetPaddingBottomTest()
        {
            float expBottomPadding = 5;
            Style style            = new Style();

            NUnit.Framework.Assert.IsNull(style.GetPaddingBottom());
            style.SetPaddingBottom(expBottomPadding);
            NUnit.Framework.Assert.AreEqual(UnitValue.CreatePointValue(expBottomPadding), style.GetPaddingBottom());
        }