Search Results

2
votes

What book on TDD for C# with treatment of Mocks

The Art of Unit Testing: With Examples in .NET by Roy Osherove (Amazon Page, …
0
votes

Rhino.Mocks - Stub one method of class and let other real methods use this stubbed one

I'm not sure which version of Rhino.Mocks you're using, but what I would do is make only the GetCurrentDateTime() method virtual (like an earlier poster suggested), then create your mock object usi …