public void LinearConstrainerConstructor() { tlog.Debug(tag, $"LinearConstrainerConstructor START"); var testingTarget = new LinearConstrainer(); Assert.IsNotNull(testingTarget, "should be not null"); Assert.IsInstanceOf <LinearConstrainer>(testingTarget, "should be an instance of testing target class!"); tlog.Debug(tag, "getCPtr : " + LinearConstrainer.getCPtr(testingTarget)); testingTarget.Dispose(); tlog.Debug(tag, $"LinearConstrainerConstructor END (OK)"); }
internal LinearConstrainer Assign(LinearConstrainer rhs) { LinearConstrainer ret = new LinearConstrainer(Interop.LinearConstrainer.LinearConstrainer_Assign(swigCPtr, LinearConstrainer.getCPtr(rhs)), false); if (NDalicPINVOKE.SWIGPendingException.Pending) { throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } return(ret); }
internal LinearConstrainer(LinearConstrainer handle) : this(Interop.LinearConstrainer.new_LinearConstrainer__SWIG_1(LinearConstrainer.getCPtr(handle)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) { throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } }