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

            var testingTarget = new VectorBlob();

            Assert.IsNotNull(testingTarget, "Should be not null!");
            Assert.IsInstanceOf <VectorBlob>(testingTarget, "Should be an Instance of VectorBlob!");

            testingTarget.Dispose();
            tlog.Debug(tag, $"VectorBlobConstructor END (OK)");
        }
Пример #2
0
        public void VectorBlobG()
        {
            tlog.Debug(tag, $"VectorBlobG START");

            var testingTarget = new VectorBlob();

            Assert.IsNotNull(testingTarget, "Should be not null!");
            Assert.IsInstanceOf <VectorBlob>(testingTarget, "Should be an Instance of VectorBlob!");

            testingTarget.G = 111;
            Assert.AreEqual(111, testingTarget.G, "Shoule be equal!");

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