0
votes
Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom?
Wrap it in an interface and mock it.
…
0
votes
Mocking Asp.net-mvc Controller Context
I find that long mocking procedure to be too much friction.
The best way we have found - using ASP.NET MVC on a real project - is to abstract the HttpContext to an IWebContext interface tha …
10
votes
How do you retrofit unit tests into a code base ?
Read Working Effectively With Legacy Code by Feathers.
Jimmy Bogard has a …
6
votes
Unit testing MVC.net Redirection
[TestFixture]
public class RedirectTester
{
[Test]
public void Should_redirect_to_success_action()
{
var controller = new RedirectController();
var result = controller.Index() as Red …
7
votes
How to unit test immutable class constructors?
Nothing, unless you are using that field. You don't want over-specification via tests. In other words, there is no need to test that the assignment operator works.
If you are using that f …
0
votes
6
votes
Rhino Mocks - How to assert a mocked method was called n-times?
better yet:
mockObject.AssertWasCalled(x => x.SomeMethod(), opt => opt.Repeat.Times(n));
…
0
votes
Testing an object’s state at save
Since it's so easy to set up a constraint here, why not test it to ensure there are no side-effects to your method?
stubbedUserDao.AssertWasCalled(x => x.Save(null), o => {
…
0
votes
Unit Test Connundrum
An integration test against the filesystem would be worthwhile. Just make sure it does what it needs to do.
…
