Reputation: 3147
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
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
Reputation: 5899
Do you mean things like nUnit (for code) and Selenium RC (for web application integration tests)
Upvotes: 2