Click or drag to resize
PropExtensionsOrTLeftTestable, TRightTestable Method
Wrapper method around FsCheck's .|. operator that fails if both properties fail.

Namespace: FsCheckUtils
Assembly: FsCheckUtils (in FsCheckUtils.dll) Version: 1.0.1.0 (1.0.1.0)
Syntax
public static Gen<Rose<Result>> Or<TLeftTestable, TRightTestable>(
	TLeftTestable l,
	TRightTestable r
)

Parameters

l
Type: TLeftTestable
The left property.
r
Type: TRightTestable
The right property.

Type Parameters

TLeftTestable
Type of the left property.
TRightTestable
Type of the right property.

Return Value

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