```csharp mock .Setup(foo => foo.Add("my string") .Returns(true) .Times(Times.Once) ``` Add `Times` expectation to the mock setup, and we can verify setup using single line `mock.VerifyAll()` or `mockRepo.VerifyAll()`