NUnitAsp

From Wikipedia, the free encyclopedia

NUnitAsp is a tool for automatically testing ASP.NET web pages. It's an extension to NUnit, a tool for test-driven development in .NET.

NUnitAsp is a class library for use within NUnit tests. It provides NUnit with the ability to download, parse, and manipulate ASP.NET web pages.

With NUnitASP, tests do not need to know how ASP.NET renders controls into HTML. Instead, NUnitASP library can do this, keeping the test code simple and clean. For example, tests don't need to know that a DataGrid control renders as an HTML table; NUnitASP handles the details. This gives users freedom to focus on functionality questions, like whether the DataGrid holds the expected values.

  [Test]
  public void TestExample()
  {
    // First, instantiate "Tester" objects:
    LabelTester label = new LabelTester("textLabel", CurrentWebForm);
    LinkButtonTester link = new LinkButtonTester("linkButton", CurrentWebForm);
    // Second, visit the page being tested:
    Browser.GetPage("http://localhost/example/example.aspx");
    // Third, use tester objects to test the page:
    AssertEquals("Not clicked.", label.Text);
    link.Click();
    AssertEquals("Clicked once.", label.Text);
    link.Click();
    AssertEquals("Clicked twice.", label.Text);
  }

NUnitAsp can test complex web sites involving multiple pages and nested controls.

Credits and history

See also

Related Articles

Wikiwand AI