public AphidInteropFunction ConstructorTest01(AphidInteropFunctionAttribute attribute, MethodInfo method)
        {
            AphidInteropFunction target = new AphidInteropFunction(attribute, method);

            return(target);
            // TODO: add assertions to method AphidInteropFunctionTest.ConstructorTest01(AphidInteropFunctionAttribute, MethodInfo)
        }
        public AphidInteropFunction ConstructorTest(Func <AphidInterpreter, object[], object> function)
        {
            AphidInteropFunction target = new AphidInteropFunction(function);

            return(target);
            // TODO: add assertions to method AphidInteropFunctionTest.ConstructorTest(Func`3<AphidInterpreter,Object[],Object>)
        }
        public object InvokeTest(
            [PexAssumeUnderTest] AphidInteropFunction target,
            AphidInterpreter interpreter,
            object[] parms
            )
        {
            object result = target.Invoke(interpreter, parms);

            return(result);
            // TODO: add assertions to method AphidInteropFunctionTest.InvokeTest(AphidInteropFunction, AphidInterpreter, Object[])
        }