public void OverlayAnimationButtonStyleConstructor()
        {
            tlog.Debug(tag, $"OverlayAnimationButtonStyleConstructor START");

            var testingTarget = new OverlayAnimationButtonStyle();

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

            testingTarget.Dispose();
            tlog.Debug(tag, $"OverlayAnimationButtonStyleConstructor END (OK)");
        }
        public void OverlayAnimationButtonStyleCreateExtension()
        {
            tlog.Debug(tag, $"OverlayAnimationButtonStyleCreateExtension START");

            var testingTarget = new OverlayAnimationButtonStyle();

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

            try
            {
                testingTarget.CreateExtension();
            }
            catch (Exception e)
            {
                tlog.Debug(tag, e.Message.ToString());
                Assert.Fail("Caught Exception : Failed!");
            }

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