Archive for the ‘Testing’ Category

Asp.net MVC: Testing a custom Authorize filters

Saturday, May 23rd, 2009

Asp.net MVC let you intercept the actions via a feature they call: Filters. Filters are just attributes that you decorate into actions and them allow to you make an stop before or after the action-methods are executed (also are filters to intercept code before/after the result is executed, errors are ...