We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Example
var manualMock = new Mock<IManual>(); manualMock.Setup(foo => foo.NumberOfFruits(It.IsAny<int>())).Returns(12); //<--- Mock --- IManual manual = manualMock.Object; juiceBuilder = new JuiceBuilder(manual);