cedric
cedric

Reputation: 3147

Unit Test ASP.NET application

I need a tool or framework that will allow me to perform unit testing on ASP.Net applications.....Do you have one

Upvotes: 3

Views: 657

Answers (3)

ulu
ulu

Reputation: 6092

For unit, as well as integration, tests, take a look at Ivonna. Unlike Selenium, it doesn't test your client code, only server-side. It runs in-process and doesn't require a Web server. So, you can run your tests in debug mode, check variables etc.

Upvotes: 1

Eric King
Eric King

Reputation: 11734

I prefer the combination of nUnit and WatiN.

Upvotes: 3

David Christiansen
David Christiansen

Reputation: 5899

Do you mean things like nUnit (for code) and Selenium RC (for web application integration tests)

Upvotes: 2

Related Questions