I have a method that uses setAttribute on the Request object. I need to test that method to see if the attribute set has the right value. I am using EasyMocks and am new to it. I created a mock request object. But I need some help on how to test the method.
Thanks for any help
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
Once you created the mock object, you can simply set it up by calling specific methods on it with the expected values. If it needs to return values, you use See the documentation for more details and examples. |
|||
|
|
|
I would use Spring MockHttpServletRequest and MockHttpServletResponse classes. |
|||||
|