Testing of ASP.NET Applications
This page is dedicated to collecting resources related to testing of ASP.NET applications. There are a number of tools and techniques available for testing ASP.NET applications.
- WatiN is a managed code wrapper around the Internet Explorer browser object an underlying document object model. The wrapper can be used for simply automating Internet Explorer, but it often used to support automated functional tests.
- Web Tests as part of Visual Studio Team Tester Edition (and Team Suite) provide a way of automating tests by tracing the HTTP traffic between the client and the server.
- WebAii is a commercial tool (like Team Test Edition/Team Suite) which also automates the browser. It is different from WatiN in that it can also automate FireFox.
- Testing for Architects This session is about how testing influences architecture, and how it helps architecture. We discuss the various types of testing - functional testing, non-functional testing (load tests, stress tests, etc.) and touch upon performance testing - what counters to look for, what some interpretations are, etc. We also look at testing in the current RIA / SOA world. We also look at Microsoft's offerings in the testing arena, and how to leverage these tools well.
- NUnitAsp - ASP.NET unit testing
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.
- Ivonna, an Asp.Net unit and integration testing tool.
Ivonna, unlike many other tools, lets you run your tests in the same process as the Web under test. Since the Asp.Net runtime is hosted, you don't need a Web server to run your tests. You have access to the page and control instances, can execute postbacks, modify config settings or swap the web.config file, mock dependencies, etc.
Ivonna is a commercial tool that runs on top of TypeMock Isolator. Open source developers get a free version.
- The Wrox book Testing ASP.NET Web Applications. Covers all phases and aspects of testing including Unit Testing, TDD, Integration Testing, Automated UI Testing, Performance testing, security testing. Covers many testing tools including nUnit, VS test suite, WCAT, Selenium, Fiddler, Firebug. Free article samples from the book include Unit Testing ASP.NET Web Forms and Design and Test Driven Development.
Revision number 8, Sunday, August 14, 2011 11:35:14 AM by ulu
You must Login to comment.
|
Sun, Jan 24, 2010 12:35 AM
by asprabahar
|
Nice one
|
|
Tue, Jan 26, 2010 11:34 AM
by amanbhullar
|
Good Article!!!
|
|
Wed, Jun 15, 2011 12:17 PM
by stas.berkov
|
Try "Lightweight Test Automation Framework" http://aspnet.codeplex.com/releases/view/35501 using Microsoft.Web.Testing.Light;...
|