我想驗證傳遞給隨後的模擬方法調用(同一方法)的參數值,但找不到有效的方法。一個普通的例子如下:使用Moq驗證具有不同參數的單獨調用
public class Foo
{
[Dependency]
public Bar SomeBar
{
get;
set;
}
public void SomeMethod()
{
this.SomeBar.SomeOtherMethod("baz");
this.SomeBar.SomeOtherMethod("bag");
}
}
public class Bar
{
public void SomeOtherMethod(string input)
{
}
}
public class MoqTest
{
[TestMethod]
public void RunTest()
{
Mock<Bar> mock = new Mock<Bar>();
Foo f = new Foo();
mock.Setup(m => m.SomeOtherMethod(It.Is<string>("baz")));
mock.Setup(m => m.SomeOtherMethod(It.Is<string>("bag"))); // this of course overrides the first call
f.SomeMethod();
mock.VerifyAll();
}
}
在安裝使用功能可能是一種選擇,但後來好像我會減少到某種全局變量的知道我驗證這論點/迭代。也許我忽略了Moq框架中的明顯內容?
這不完全是我想要的,因爲它不能確保以所需的特定順序調用該方法,並且鏈接的帖子基本上解釋了那裏這並不是Moq的直接支持,但我同意這可能是最好的選擇。 – Thermite 2011-01-11 01:48:17