Description
Some verification count methods are missing from the documentation.
Missing Documentation
.Between(min, max) - Between min and max times (inclusive)
.Times(Func<int, bool>) - Custom predicate verification
Suggested Documentation
Add these methods to the "Verify interactions" section under supported call count verifications:
- `.Between(min, max)` - Between min and max times (inclusive)
- `.Times(predicate)` - Custom predicate
**Examples:**
```csharp
// Between min and max (inclusive)
sut.VerifyMock.Invoked.Dispense(It.IsAny<string>(), It.IsAny<int>())
.Between(3, 5);
// Custom predicate
sut.VerifyMock.Invoked.Dispense(It.IsAny<string>(), It.IsAny<int>())
.Times(count => count % 2 == 0); // Even number of calls
Description
Some verification count methods are missing from the documentation.
Missing Documentation
.Between(min, max)- Between min and max times (inclusive).Times(Func<int, bool>)- Custom predicate verificationSuggested Documentation
Add these methods to the "Verify interactions" section under supported call count verifications: