예제 #1
0
        public void TableLayoutStyle_SizeType_Set_GetReturnsExpected(SizeType value)
        {
            var style = new SubTableLayoutStyle
            {
                SizeType = value
            };

            Assert.Equal(value, style.SizeType);
        }
예제 #2
0
        public void TableLayoutStyle_Ctor_Default()
        {
            var style = new SubTableLayoutStyle();

            Assert.Equal(SizeType.AutoSize, style.SizeType);
        }