Exemple #1
0
        public void TabButtonStyleConstructor()
        {
            tlog.Debug(tag, $"TabButtonStyleConstructor START");

            TabButtonStyle style = new TabButtonStyle()
            {
                BackgroundColor = Color.Cyan,
            };
            var testingTarget = new TabButtonStyle(style);

            Assert.IsNotNull(testingTarget, "null handle");
            Assert.IsInstanceOf <TabButtonStyle>(testingTarget, "Should return TabButtonStyle instance.");

            testingTarget.Dispose();
            tlog.Debug(tag, $"TabButtonStyleConstructor END (OK)");
        }