Enum TimesSpecMode
Identifies the verification strategy represented by a TimesSpec value.
Namespace: FastMoq.Providers
Assembly: FastMoq.Abstractions.dll
Syntax
public enum TimesSpecMode
Fields
| Name | Description |
|---|---|
| AtLeast | Verifies that the invocation occurred at least the specified number of times. |
| AtLeastOnce | Verifies that the invocation occurred at least once. |
| AtMost | Verifies that the invocation occurred at most the specified number of times. |
| Exactly | Verifies that the invocation occurred an exact number of times. |
| Never | Verifies that the invocation never occurred. |