Namespace: FsCheck
Assembly: FsCheck.dll
Base Type:
obj
Static member | Description |
|
Check all public static methods on the given type that have a testable return type with the given configuration. This includes let-bound functions in a module.
|
|
Check all public static methods on the given type that have a testable return type with the given configuration. This includes let-bound functions in a module. |
Full Usage:
Check.Method(config, methodInfo, ?target)
Parameters:
Config
methodInfo : MethodInfo
?target : obj
|
Check the given property identified by the given MethodInfo.
|
Full Usage:
Check.One(name, config, property)
Parameters:
string
config : Config
property : 'Testable
|
Check the given property using the given config, and the given test name.
|
|
Check the given property using the given config.
|
Full Usage:
Check.Quick(name, property)
Parameters:
string
property : 'Testable
|
Check one property with the quick configuration, and using the given name.
|
Full Usage:
Check.Quick(property)
Parameters:
'Testable
|
Check one property with the quick configuration.
|
Full Usage:
Check.QuickAll()
|
Check all public static methods on the given type that have a testable return type with quick configuration |
|
Check all public static methods on the given type that have a testable return type with quick configuration
|
Full Usage:
Check.QuickThrowOnFailure(property)
Parameters:
'Testable
|
Check one property with the quick configuration, and throw an exception if it fails or is exhausted.
|
Full Usage:
Check.QuickThrowOnFailureAll()
|
Check all public static methods on the given type that have a testable return type with quick configuration |
|
Check all public static methods on the given type that have a testable return type with quick configuration, and throw on failure or exhaustion.
|
Full Usage:
Check.Verbose(name, property)
Parameters:
string
property : 'Testable
|
Check one property with the verbose configuration, and using the given name.
|
Full Usage:
Check.Verbose(property)
Parameters:
'Testable
|
Check one property with the verbose configuration.
|
Full Usage:
Check.VerboseAll()
|
Check all public static methods on the given type that have a testable return type with the verbose configuration |
|
Check all public static methods on the given type that have a testable return type with the verbose configuration
|
Full Usage:
Check.VerboseThrowOnFailure(property)
Parameters:
'Testable
|
Check one property with the verbose configuration, and throw an exception if it fails or is exhausted.
|
Full Usage:
Check.VerboseThrowOnFailureAll()
|
Check all public static methods on the given type that have a testable return type with the verbose configuration, and throws on failure or exhaustion. |
|
Check all public static methods on the given type that have a testable return type with the verbose configuration, and throws on failure or exhaustion.
|