2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Rhino.Mocks使ってみたメモ

Last updated at Posted at 2014-05-09

通信に関わる部分だけStubにしてテストしたいなぁと思ってRhino.Mocks使ってみたメモ。
参考:#123 Rhino.Mocksを使ってみた « C# « a wandering wolf
Stubにしたいメソッドをvirtualにして

Hoge target = MockRepository.GeneratePartialMock<Hoge>();
target.Stub(x => x.スタブにしたいメソッド(想定する引数)).Return(欲しい戻り値);

ってするだけ。これで引数がヒットした時だけStubになって欲しい戻り値が得られる。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?