public void TableLayoutStyle_SizeType_Set_GetReturnsExpected(SizeType value)
        {
            var style = new SubTableLayoutStyle
            {
                SizeType = value
            };

            Assert.Equal(value, style.SizeType);
        }
        public void TableLayoutStyle_Ctor_Default()
        {
            var style = new SubTableLayoutStyle();

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