Created
March 2, 2015 13:46
-
-
Save vintharas/f0d29f39662f282d6ca0 to your computer and use it in GitHub Desktop.
AutoFixture MVC Controller Customization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class ModelStateTestHelpers | |
{ | |
public static bool HasError(this ModelStateDictionary modelState, string errorMessage) | |
{ | |
return modelState.Any(ms => ms.Value.Errors.Any(e => e.ErrorMessage == errorMessage)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment