Click or drag to resize

CaseBitwiseAnd Operator

Combines two Cases.

Namespace:  SmartTests
Assembly:  SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax
public static Case operator &(
	Case case1,
	Case case2
)

Parameters

case1
Type: SmartTestsCase
The first Case to combine.
case2
Type: SmartTestsCase
The second Case to combine.

Return Value

Type: Case
The combined Case.
Exceptions
ExceptionCondition
ArgumentNullException If either case1 or case2 are null.
Remarks
Use it to combine multiple cases, for example when testing a method/indexer/constructor with several parameters.
See Also