Hi,
How do I go about creating a mock request for my asp.net-mvc application for unit-testing?
What options do I have?
I am using FormsCollection in my Actions so I can simulate form input data also.
|
2
|
Hi, How do I go about creating a mock request for my asp.net-mvc application for unit-testing? What options do I have? I am using FormsCollection in my Actions so I can simulate form input data also.
|
|||
|
|
|
|
Hi, You just have to create a new instance of FormCollection and add the data inside of it. So you can call something like this without mocking anything.
Otherwise if your code calls something like Request or HttpContext you can use the following extension method (inspired from the Scott Hanselman's one) I am using RhinoMocks.
|
|||
|
|