RuntimeChecks Enumeration |
Specifies the checks TestLeft performs when searching for objects and typecasting interfaces.
Namespace:
SmartBear.TestLeft.Options
Assembly:
SmartBear.TestLeft (in SmartBear.TestLeft.dll) Version: 14.60.289.11 (14.60.289.11)
Syntax [FlagsAttribute]
public enum RuntimeChecks
<FlagsAttribute>
Public Enumeration RuntimeChecks
Dim instance As RuntimeChecks
[FlagsAttribute]
public enum class RuntimeChecks
Members
| Member name | Value | Description |
---|
| None | 0 |
No check.
|
| TypeCast | 1 |
Checks if the result of the Find, FindAll, TryFind or Cast method can be cast to the desired type.
|
| AmbiguousMatches | 2 |
Checks if the search pattern of the Find and TryFind methods returns multiple objects.
|
| All | 3 |
Commands TestLeft to perform all the available checks.
|
See Also