Пример #1
0
        public void AnimatableGetPropertyCount()
        {
            tlog.Debug(tag, $"AnimatableGetPropertyCount START");

            var testingTarget = new Animatable();

            Assert.IsNotNull(testingTarget, "should be not null");
            Assert.IsInstanceOf <Animatable>(testingTarget, "should be an instance of Animatable class!");

            tlog.Debug(tag, "PropertyCount : " + testingTarget.GetPropertyCount());

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