NUnitAsp - Newbie question

  • Thread starter Thread starter NK
  • Start date Start date
N

NK

I am trying to test a web application that has a number of aspx pages.

I've looked into NUnitAsp and was wondering how to test several pages
automatically. I can test one page at a time using the tutorial but
how do I pass parameters from one page to another to automate the
tests.

Any pointers (with as much details as possible) will be helpful.

Thanks in advance
 
NUnit is a unit test application. For simplicity, we can call a unit a
single function in our code (not quite true, but it makes sense in this
context). We are not running an integration test of any sort at this time,
just testing the unit.

If you want a more complete test, Application Center Test (ACT), which ships
with the Enterprise Architect version of VS.NET is a better option. There
are also third party tools for this.

I have played with NUnit, but have to get more familiar with NUnitASP before
making any recommendations on it.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
 
Back
Top