Click or drag to resize
PropExtensionsAndAllTTestable Method
Convenience method that applies FsCheck's .&. operator to a collection of properties and succeeds if all properties succeed.

Namespace: FsCheckUtils
Assembly: FsCheckUtils (in FsCheckUtils.dll) Version: 1.0.1.0 (1.0.1.0)
Syntax
public static Gen<Rose<Result>> AndAll<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 succeeds if all properties succeed.
See Also