如何在RhinoMocks中執行一個存根對象來爲其上的void方法返回void?我該如何強制一個void方法從Stub對象返回Void?
拿這個例子:
public interface ICar
{
string Model {get;set;}
void Horn();
}
ICar stubCar= MockRepository.GenerateStub<ICar>();
stubCar.Expect(c=>c.Horn()).Return(//now what so that
// it returns nothing as the meth. returns void ?
如果使用void返回類型定義它,_could_它將如何返回任何內容? – CodingGorilla
我的擔心是如果我不強制它返回void,對這個存根的調用會拋出一個異常。我試過並看到:喬恩是對的! – pencilCake