Exemple #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)");
        }
Exemple #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)");
        }
Exemple #3
0
 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(VectorBlob obj)
 {
     return((obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr);
 }