| CaseBitwiseAnd Operator |
Namespace:
SmartTests
Assembly:
SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax public static Case operator &(
Case case1,
Case case2
)
Public Shared Operator And (
case1 As Case,
case2 As Case
) As Case
public:
static Case^ operator &(
Case^ case1,
Case^ case2
)
static let inline (&&&)
case1 : Case *
case2 : Case : Case
Parameters
- case1
- Type: SmartTestsCase
The first Case to combine. - case2
- Type: SmartTestsCase
The second Case to combine.
Return Value
Type:
CaseThe combined
Case.
Exceptions Remarks
Use it to combine multiple cases, for example when testing a method/indexer/constructor with several
parameters.
See Also