Click or drag to resize
PropExtensionsOrAllTTestable Method
Convenience method that applies FsCheck's .|. operator to a collection of properties and fails if all properties fail.

Namespace: FsCheckUtils
Assembly: FsCheckUtils (in FsCheckUtils.dll) Version: 1.0.1.0 (1.0.1.0)
Syntax
public static Gen<Rose<Result>> OrAll<TTestable>(
	params TTestable[] assertions
)

Parameters

assertions
Type: TTestable
The collection of properties.

Type Parameters

TTestable
Type of the properties in the collection. They must all be of the same type.

Return Value

Type: GenRoseResult
A property that fails if all properties fail.
See Also