예제 #1
0
        public bool HasToStringConversionGetTest([PexAssumeUnderTest] AphidInteropMethodArg target)
        {
            bool result = target.HasToStringConversion;

            return(result);
            // TODO: add assertions to method AphidInteropMethodArgTest.HasToStringConversionGetTest(AphidInteropMethodArg)
        }
예제 #2
0
        public MethodInfo ImplicitConversionOperatorGetTest([PexAssumeUnderTest] AphidInteropMethodArg target)
        {
            MethodInfo result = target.ImplicitConversionOperator;

            return(result);
            // TODO: add assertions to method AphidInteropMethodArgTest.ImplicitConversionOperatorGetTest(AphidInteropMethodArg)
        }
예제 #3
0
        public Type TargetTypeGetTest([PexAssumeUnderTest] AphidInteropMethodArg target)
        {
            Type result = target.TargetType;

            return(result);
            // TODO: add assertions to method AphidInteropMethodArgTest.TargetTypeGetTest(AphidInteropMethodArg)
        }
예제 #4
0
        public bool HasParamArrayGetTest([PexAssumeUnderTest] AphidInteropMethodArg target)
        {
            bool result = target.HasParamArray;

            return(result);
            // TODO: add assertions to method AphidInteropMethodArgTest.HasParamArrayGetTest(AphidInteropMethodArg)
        }
예제 #5
0
        public AphidInteropMethodArg ConstructorTest(object argument, ParameterInfoCache parameterInfo)
        {
            AphidInteropMethodArg target = new AphidInteropMethodArg(argument, parameterInfo);

            return(target);
            // TODO: add assertions to method AphidInteropMethodArgTest.ConstructorTest(Object, ParameterInfoCache)
        }
예제 #6
0
        public bool IsPrecisionLostGetTest([PexAssumeUnderTest] AphidInteropMethodArg target)
        {
            bool result = target.IsPrecisionLost;

            return(result);
            // TODO: add assertions to method AphidInteropMethodArgTest.IsPrecisionLostGetTest(AphidInteropMethodArg)
        }
예제 #7
0
        public bool IsUnsafeConvertibleNumberPairGetTest([PexAssumeUnderTest] AphidInteropMethodArg target)
        {
            bool result = target.IsUnsafeConvertibleNumberPair;

            return(result);
            // TODO: add assertions to method AphidInteropMethodArgTest.IsUnsafeConvertibleNumberPairGetTest(AphidInteropMethodArg)
        }
예제 #8
0
        public bool IsNonRootImplementationOfTargetGetTest([PexAssumeUnderTest] AphidInteropMethodArg target)
        {
            bool result = target.IsNonRootImplementationOfTarget;

            return(result);
            // TODO: add assertions to method AphidInteropMethodArgTest.IsNonRootImplementationOfTargetGetTest(AphidInteropMethodArg)
        }
예제 #9
0
        public bool IsExactTypeMatchGetTest([PexAssumeUnderTest] AphidInteropMethodArg target)
        {
            bool result = target.IsExactTypeMatch;

            return(result);
            // TODO: add assertions to method AphidInteropMethodArgTest.IsExactTypeMatchGetTest(AphidInteropMethodArg)
        }
예제 #10
0
        public bool IsDerivedFromUserReferenceTypeGetTest([PexAssumeUnderTest] AphidInteropMethodArg target)
        {
            bool result = target.IsDerivedFromUserReferenceType;

            return(result);
            // TODO: add assertions to method AphidInteropMethodArgTest.IsDerivedFromUserReferenceTypeGetTest(AphidInteropMethodArg)
        }
예제 #11
0
        public object ConvertTest01(
            [PexAssumeUnderTest] AphidTypeConverter target,
            AphidInteropMethodArg arg,
            Type[] genericArguments
            )
        {
            object result = target.Convert(arg, genericArguments);

            return(result);
            // TODO: add assertions to method AphidTypeConverterTest.ConvertTest01(AphidTypeConverter, AphidInteropMethodArg, Type[])
        }
예제 #12
0
        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>)
        }
예제 #13
0
        public AphidConversionInfo CanConvertTest(
            [PexAssumeUnderTest] AphidTypeConverter target01,
            AphidInteropMethodArg interopArg,
            object val,
            Type target
            )
        {
            AphidConversionInfo result = target01.CanConvert(interopArg, val, target);

            return(result);
            // TODO: add assertions to method AphidTypeConverterTest.CanConvertTest(AphidTypeConverter, AphidInteropMethodArg, Object, Type)
        }