Пример #1
0
        public AphidFunctionConverter ConstructorTest(AphidInterpreter interpreter)
        {
            AphidFunctionConverter target = new AphidFunctionConverter(interpreter);

            return(target);
            // TODO: add assertions to method AphidFunctionConverterTest.ConstructorTest(AphidInterpreter)
        }
Пример #2
0
        public Delegate ConvertTest(
            [PexAssumeUnderTest] AphidFunctionConverter target,
            Type methodType,
            object function,
            Type[] genericArguments
            )
        {
            Delegate result = target.Convert(methodType, function, genericArguments);

            return(result);
            // TODO: add assertions to method AphidFunctionConverterTest.ConvertTest(AphidFunctionConverter, Type, Object, Type[])
        }
Пример #3
0
        public Delegate ConvertFunctionWrapperTest(
            [PexAssumeUnderTest] AphidFunctionConverter target,
            MethodInfo method,
            Type delegateType,
            AphidFunction function,
            Type[] genericArguments
            )
        {
            Delegate result = target.ConvertFunctionWrapper(method, delegateType, function, genericArguments);

            return(result);
            // TODO: add assertions to method AphidFunctionConverterTest.ConvertFunctionWrapperTest(AphidFunctionConverter, MethodInfo, Type, AphidFunction, Type[])
        }