public AphidInteropMethodArg ConstructorTest(object argument, ParameterInfoCache parameterInfo)
        {
            AphidInteropMethodArg target = new AphidInteropMethodArg(argument, parameterInfo);

            return(target);
            // TODO: add assertions to method AphidInteropMethodArgTest.ConstructorTest(Object, ParameterInfoCache)
        }
        public ArgumentTypeCache ConstructorTest(
            Type argumentType,
            ParameterInfoCache targetParam,
            Type targetType
            )
        {
            ArgumentTypeCache target = new ArgumentTypeCache(argumentType, targetParam, targetType);

            return(target);
            // TODO: add assertions to method ArgumentTypeCacheTest.ConstructorTest(Type, ParameterInfoCache, Type)
        }
        public AphidInteropMethodArg ConstructorTest01(
            object argument,
            ParameterInfoCache parameterInfo,
            bool?constructsParamArray
            )
        {
            AphidInteropMethodArg target
                = new AphidInteropMethodArg(argument, parameterInfo, constructsParamArray);

            return(target);
            // TODO: add assertions to method AphidInteropMethodArgTest.ConstructorTest01(Object, ParameterInfoCache, Nullable`1<Boolean>)
        }