示例#1
0
        public void RelativeVector3NotEqualTo()
        {
            tlog.Debug(tag, $"RelativeVector3NotEqualTo START");

            var testingTarget = new RelativeVector3(1.0f, 0.5f, 0.4f);

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

            using (RelativeVector3 vector = new RelativeVector3(1.0f, 0.5f, 0.6f))
            {
                Assert.IsTrue((testingTarget.NotEqualTo(vector)), "Should be equal");
            }

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