I am stubbing the return value of a method using rhino mocks. However, I want to return the same dummy value for any argument that is passed in.
How do I do this without pre-registering every input to return the same output?
|
I am stubbing the return value of a method using rhino mocks. However, I want to return the same dummy value for any argument that is passed in. How do I do this without pre-registering every input to return the same output? |
||||
|
|
_testHelper is helper class where you are returning a dummy value from GetMethodValue(). you have to write GetMethodValue() in your _testHelper class.
|
|||
|
|
|
You can use
Also by specifying See Rhino Mocks wiki for more examples. |
|||
|
|
|
You'd use |
|||
|
|