public void ObjectCreatedSignalEmit()
        {
            tlog.Debug(tag, $"ObjectCreatedSignalEmit START");
            var currentPid = global::System.Diagnostics.Process.GetCurrentProcess().Id;
            var currentTid = global::System.Threading.Thread.CurrentThread.ManagedThreadId;

            tlog.Debug(tag, $"thread check! main pid={App.mainPid}, current pid={currentPid}, main tid={App.mainTid}, current tid={currentTid}");

            using (View view = new View())
            {
                var testingTarget = new ObjectCreatedSignal();
                Assert.IsNotNull(testingTarget, "Should be not null!");
                Assert.IsInstanceOf <ObjectCreatedSignal>(testingTarget, "Should be an Instance of ObjectCreatedSignal!");

                try
                {
                    using (RefObject obj = new RefObject(view.SwigCPtr.Handle, false))
                    {
                        testingTarget.Emit(view);
                    }
                }
                catch (Exception e)
                {
                    tlog.Debug(tag, e.Message.ToString());
                    Assert.Fail("Caught Exception: Failed!");
                }

                testingTarget.Dispose();
            }

            tlog.Debug(tag, $"ObjectCreatedSignalEmit END (OK)");
        }
        public void ObjectCreatedSignalConnect()
        {
            tlog.Debug(tag, $"ObjectCreatedSignalConnect START");

            var testingTarget = new ObjectCreatedSignal();

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

            try
            {
                dummyCallback callback = OnDummyCallback;
                testingTarget.Connect(callback);
                testingTarget.Disconnect(callback);
            }
            catch (Exception e)
            {
                tlog.Debug(tag, e.Message.ToString());
                Assert.Fail("Caught Exception: Failed!");
            }

            testingTarget.Dispose();

            tlog.Debug(tag, $"ObjectCreatedSignalConnect END (OK)");
        }
        public void ObjectCreatedSignalConstructor()
        {
            tlog.Debug(tag, $"ObjectCreatedSignalConstructor START");

            using (View view = new View())
            {
                var testingTarget = new ObjectCreatedSignal(view.SwigCPtr.Handle, false);
                Assert.IsNotNull(testingTarget, "Should be not null!");
                Assert.IsInstanceOf <ObjectCreatedSignal>(testingTarget, "Should be an Instance of ObjectCreatedSignal!");

                testingTarget.Dispose();
            }

            tlog.Debug(tag, $"ObjectCreatedSignalConstructor END (OK)");
        }
        public void ObjectCreatedSignalEmpty()
        {
            tlog.Debug(tag, $"ObjectCreatedSignalEmpty START");

            var testingTarget = new ObjectCreatedSignal();

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

            try
            {
                testingTarget.Empty();
            }
            catch (Exception e)
            {
                tlog.Debug(tag, e.Message.ToString());
                Assert.Fail("Caught Exception: Failed!");
            }

            testingTarget.Dispose();

            tlog.Debug(tag, $"ObjectCreatedSignalEmpty END (OK)");
        }
 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ObjectCreatedSignal obj)
 {
     return((obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr);
 }