When I migrated sample SportsStore app from Steve Sanderson's Pro ASP.NET MVC Framework (from asp.net 1.0 to mvc 2 beta) using this app provided by eric lipton, everything work just fine - except 2 unit tests.
The error message on both is:
Tests.CartControllerTests.VeryLongTestMethodName:
System.ArgumentNullException: value can't be undefined.
Parameter name: context
I suspect this is because default model binder in version 2 supports DataAnnotations, because stack call trace from NUnit told me about some problems in DefaultModelBinder. Any ideas how can I fix it?
EDIT
Tried to use Moq to solve the problem, but it didn't work.
Here's the code:
var request = new Moq.Mock<HttpRequestBase>();
request.Setup(r => r.HttpMethod).Returns("POST");
var mockHttpContext = new Moq.Mock<HttpContextBase>();
mockHttpContext.Setup(c => c.Request).Returns(request.Object);
controllerContext = new ControllerContext(mockHttpContext.Object, new RouteData(),
new Moq.Mock<ControllerBase>().Object);
Method I'm testing submits only POST. Is it ok to put "POST" to my tests?
Suspect this may be an omission in the converter. If this is a (sample) application then can't you simply open the application in 2.0 and forget about the conversion?
If you are trying to learn 2.0 then this may not be the best way forward.
If you are testing to see whether the converter works then maybe try it on a real life application and not a sample one.
Have you considered leaving a comment on the converters web site given that any comments left there would be specific to the converter?
Have you actually tried to step through the code line by line and see if there is anything obvious.
Anyway, these are the things I'd be trying.