Esempio n. 1
0
        public void LayoutControllerGetCoreAnimation()
        {
            tlog.Debug(tag, $"LayoutControllerGetCoreAnimation START");

            var testingTarget = new LayoutController(Window.Instance);

            Assert.IsNotNull(testingTarget, "Can't create success object LayoutController");
            Assert.IsInstanceOf <LayoutController>(testingTarget, "Should be an instance of LayoutController type.");

            var result = testingTarget.GetCoreAnimation();

            tlog.Debug(tag, "Get core animation : " + result);

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