所以我是 rhino mocks 的新手,我正试图让它在我正在进行的 MVP 模式项目中运行。所以我有一个代表我的视图的接口和我的 Presenter 的一个类,如下所示:
public interface IView {
string SomeData { get; set; }
}
public class Presenter {
public IView View { get; set; }
public void Init(IView view) {
this.View = view;
}
public virtual string DoStuff(){
return "Done stuff with " + this.View.SomeData;
}
}
我正在尝试设置一个测试来模拟该DoStuff
方法,所以我有一个这样的基本夹具:
[TestMethod]
public void Test(){
var mocks = new MockRepository();
var view = mocks.Stub<IView>();
var presenter = mocks.StrictMock<Presenter>();
presenter.Init(view);
using(mocks.Record()){
presenter.Expect(p => p.DoStuff()).Return("Mocked result");
}
string result = string.Empty;
using(mocks.Playback()){
result = presenter.DoStuff();
}
Assert.AreEqual(result, "Mocked result");
}
但是我不断从方法中得到一个空引用异常DoStuff
(在期望设置期间),因为 View 对象为空。这就是我卡住的地方。我已经调用了Init
分配View
属性值的方法,并且我认为期望设置的重点是该方法本身从未被调用过?