, It.IsAny<int>() moq:
_mockDataAccess.Setup(m => m.smokeTest(It.IsAny<int>(), It.IsAny<int>())).Returns(20);
moq, , :
int x = It.IsAny<int>();
int y = It.IsAny<int>();
_mockDataAccess.Setup(m => m.smokeTest(x, y)).Returns(20);
x y deafult int, 0, :
_mockDataAccess.Setup(m => m.smokeTest(0, 0)).Returns(20);
moq 20, 0 0, deafult int, 0. , , It.IsAny<int>() x y, moq.
@Rob , It.IsAny<T> , moq, , , , , , T. moq.