We use Moq for our unit tests, I dont understand why we are doing the following with the VerifyAll call. Would there be a reason why this is done or can I just use the verify method?
createbleUtility.Verify(x => x.AuditCreatedItem(It.IsAny<TaskFinished>()), Times.Exactly(2));
createbleUtility.VerifyAll();