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 700349
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:29:15+00:00 2026-05-14T03:29:15+00:00

What would a simple unit test look like to confirm that a certain controller

  • 0

What would a simple unit test look like to confirm that a certain controller exists if I am using Rhino Mocks, NUnit and ASP.NET MVC 2? I’m trying to wrap my head around the concept of TDD, but I can’t see to figure out how a simple test like “Controller XYZ Exists” would look. In addition, what would the unit test look like to test an Action Result off a view?

  • 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-05-14T03:29:15+00:00Added an answer on May 14, 2026 at 3:29 am

    Confirm that a controller exists

    Having unit tests on its actions is a strong suggestion that the controller exists which brings us to:

    What would the unit test look like to
    test an Action Result off a view

    Here’s an example:

    public class HomeController: Controller
    {
        private readonly IRepository _repository;
        public HomeController(IRepository repository)
        {
            _repository = repository;
        }
    
        public ActionResult Index()
        {
            var customers = _repository.GetCustomers();
            return View(customers);
        }
    }
    

    And the corresponding unit test:

    [Test]
    public void HomeController_Index_Action_Should_Fetch_Customers_From_Repo()
    {
       // arrange
       var repositoryStub = MockRepository.GenerateStub<IRepository>();
       var sut = new HomeController(repositoryStub);
       var expectedCustomers = new Customer[0];
       repositoryStub
           .Stub(x => x.GetCustomers())
           .Return(expectedCustomers);
    
       // act
       var actual = sut.Index();
    
       // assert
       Assert. IsInstanceOfType(typeof(ViewResult), actual);
       var viewResult = (ViewResult)actual;
       Assert.AreEqual(expectedCustomers, viewResult.ViewData.Model);
    }
    

    MVCContrib has some great features allowing you to mock HttpContext and also test your routes.

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

Sidebar

Related Questions

I'm using NUnit for my unit tests and I have my unit test class
Most examples I see of Unit tests are simple tests like Assert.That(5, 2 +
What would be a simple implementation of a method to convert a String like
I would like to do simple (looping) animation (moving, changing alpha etc) in Haxe
I would like to ask for some simple examples showing the uses of <div>
I would like to deploy a very simple DLL with my C# application, but
I'm using the Boost::Test library for unit testing, and I've in general been hacking
I have a bunch of repository classes which I want to unit-test using Visual
(please excuse that I didn't use aliases). I would like my query output to
What would be the proper way to unit test an abstract class which takes

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.