I am using Moq for verifications and unit-testing. I would like to verify that say a method 'Add' was called with parameter 1, and parameter 5, and not called for any other value except for those.
Is it possible to create verifications, something similar to the code below? (note this is not actual code!)
mock.Verify(x=>x.Add(1), Times.Once());
mock.Verify(x=>x.Add(5), Times.Once());
mock.Verify(x=>x.Add(It.IsAny<int>()), Times.Never());