Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9166099
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:04:53+00:00 2026-06-17T15:04:53+00:00

I have an MVC3 application with the below action. public class FooController : ApplicationController

  • 0

I have an MVC3 application with the below action.

public class FooController : ApplicationController
{
  [My(baz: true)]
  public void Index()
  {
    return view("blah");
  }
}

I can write a test to verify that Index is decorated with MyAttribute using MVCContrib’s TestHelper in this fashion.

[TestFixture]
public class FooControllerTest
{
  [Test]
  public void ShouldHaveMyAttribute()
  {
    var fooController = new FooController();
    fooController.Allows(x => x.Index(), new List<Type>{typeof(MyAttribute)});
  }
}

Question – How can this test be changed to test that the MyAttribute decoration includes the property ‘baz’ to be true?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T15:04:54+00:00Added an answer on June 17, 2026 at 3:04 pm

    If you want to verify the attribute in your unit tests, you’ll need to use reflection to inspect your controller methods as follows.

    [TestFixture]
    public class FooController Tests 
    {
        [Test]
        public void Verify_Index_Is_Decorated_With_My_Attribute() {
            var controller = new FooController ();
            var type = controller.GetType();
            var methodInfo = type.GetMethod("Index");
            var attributes = methodInfo.GetCustomAttributes(typeof(MyAttribute), true);
            Assert.IsTrue(attributes.Any(), "MyAttribute found on Index");
            Assert.IsTrue(((MyAttribute)attr[0]).baz);
        }
    }
    

    this may help you

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my asp.net mvc3 application, I have a custom Authorization Attribute as seen below.
In an MVC3 application I have a view rendering two Ajax partial views: a
I have the Global.asax like the code below: public class MvcApplication : System.Web.HttpApplication {
MVC3 VB.NET Razor view Application... I have a view that uses a for each
My application is in Asp.net MVC3 coded in C#.Net. I have a view which
I have a MVC3 application with some XML files on the App_Data folder. To
here's my question: I have an MVC3 C# application and I need to update
I have an ASP.NET MVC3 application that I have built and it has two
In my MVC3 application i have a dropdown list. In there i have to
I have been working on mvc3 application and trying to localize the same. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.