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

            var ani = new Animatable();

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

            var registered    = new TypeRegistration((global::System.IntPtr)ani.SwigCPtr, false);
            var testingTarget = new AnimatablePropertyComponentRegistration(registered, "Animatable", 28000000, 28000000, (uint)28000000);

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

            testingTarget.Dispose();
            registered.Dispose();
            ani.Dispose();
            tlog.Debug(tag, $"AnimatablePropertyComponentRegistrationConstructor END (OK)");
        }