public void does_not_attach_a_view_if_no_filters_find_a_match()
        {
            _viewAttacherConvention.AddViewsForActionFilter(_filterThatFindsNone);

            _viewAttacherConvention.AttemptToAttachViewToAction(_views, _action, _observer);
            _action.OfType <FakeViewToken>().ShouldHaveCount(0);
        }
 /// <summary>
 /// views are matched to actions based on same namespace and the Action's underlying method name
 /// </summary>
 public void by_ViewModel_and_Namespace_and_MethodName()
 {
     _attacher.AddViewsForActionFilter(new ActionWithSameNameAndFolderAsViewReturnsViewModelType());
 }