NUnitAsp is based on the principle that testing web pages should use
the same concepts as creating them. When you use NUnitAsp, you use
classes and IDs similar to those you used when creating the web page
you are testing.
In this tutorial, we'll walk you
through the process of creating a simple one-page web application and
tests. We assume you have some experience with ASP.NET and that you're
using Visual Studio .NET (VS.NET) and Internet Information Server
(IIS). The source for the "Guestbook" solution we create in this
tutorial is located in the \sample directory of the NUnitAsp download.
You can use the source as reference, but the tutorial doesn't discuss
how to configure the files in the \sample directory to run. Instead, it
assumes you will create your own solution and projects as you work
through the tutorial.
Advanced users may get started more quickly by jumping straight to the http://nunitasp.sourceforge.net/quickstart.html - QuickStart Guide .
About the Sample Application
The
application we'll be creating in this tutorial is a simple on-line
guest book. It allows users to enter a name and comment, which is then
displayed on the page.
|