public object ConvertTest04(Type targetType, decimal value) { object result = AphidTypeConverter.Convert(targetType, value); return(result); // TODO: add assertions to method AphidTypeConverterTest.ConvertTest04(Type, Decimal) }
public object ConvertTest02(MethodBase opMethod, object argument) { object result = AphidTypeConverter.Convert(opMethod, argument); return(result); // TODO: add assertions to method AphidTypeConverterTest.ConvertTest02(MethodBase, Object) }
public object[] ConvertTest( [PexAssumeUnderTest] AphidTypeConverter target, AphidInteropMethodArg[] args, Type[] genericArguments ) { object[] result = target.Convert(args, genericArguments); return(result); // TODO: add assertions to method AphidTypeConverterTest.ConvertTest(AphidTypeConverter, AphidInteropMethodArg[], Type[]) }
public object ConvertTest03( [PexAssumeUnderTest] AphidTypeConverter target, Type targetType, object srcValue, Type[] genericArguments ) { object result = target.Convert(targetType, srcValue, genericArguments); return(result); // TODO: add assertions to method AphidTypeConverterTest.ConvertTest03(AphidTypeConverter, Type, Object, Type[]) }