mhenry07 / ASPUnitRunner

An NUnit test runner for ASPUnit (run classic ASP unit tests from NUnit)

mhenry07 (author)
Mon May 18 19:41:55 -0700 2009
commit  2ce383265f3e8cbbc59a68e4e20aa4f60b010a95
tree    bf84919547dbdfa5859a789d92f260679f80ca47
parent  28bc175d4292f09e364cd02e3b14c02d47d70e59
ASPUnitRunner / samples
name age message
..
directory ASPUnit/ Loading commit data...
file README.txt
directory asp.NUnitTests/
directory asp.tests/
directory asp/
samples/README.txt
To run the sample tests from a web browser:
 * Make sure IIS is running and classic ASP support is enabled
   * Also, parent paths must be enabled. This has security ramifications. As an alternative you may change the ASP 
   include statements to use absolute virtual paths based on the location where you install the ASPUnitRunner files.
 * create a new folder called "ASPUnitRunner" in IIS
   * For example: C:\Inetpub\wwwroot\ASPUnitRunner
   * Or make a virtual ASPUnitRunner directory that points to this samples folder.
 * copy the asp, asp.tests and ASPUnit folders to the new ASPUnitRunner folder
   * Note: ASPUnit is available from http://aspunit.sourceforge.net/
 * Navigate to the following location from your web browser (adjust the server name):
   * http://server/ASPUnitRunner/asp.tests/
 * Click the "Run Tests" button

To run the sample tests from NUnit 2.5:
 * follow the above steps
 * Open the asp.NUnitTests project in Visual Studio or Visual C# Express
 * Add/update references to nunit.framework.dll (2.5).
 * Update the value of AspUnitUri in TestAsp.cs
 * If credentials are required, assign them in the Runner constructor.
 * Build asp.NUnitTests.
 * Open NUnit, open the asp.NUnitTests project and run the tests