0

I am looking automated test tool for testing my website project like NUnit. I used Nunit test tool my last project. Now I have to write new test tool for my new web project. Anybody know test tool better than Nunit? or should I use Nunit again? What is the best automated test tool?

John
  • 386
  • 1
  • 7
  • 22
  • You should also see these question [best-test-automation-tool](http://stackoverflow.com/questions/354576/best-test-automation-tool). – Andreas Rohde Feb 02 '12 at 08:28

6 Answers6

4

Check Selenium.

Ufuk Hacıoğulları
  • 37,978
  • 12
  • 114
  • 156
Dan
  • 1,927
  • 2
  • 24
  • 35
2

If you have Visual Studio with Coded UI and need to do UI automation, take a look at this link:

http://cuite.codeplex.com/

Gil S
  • 21
  • 2
0

I would use Selenium with C# Selenium Client Driver as the browser automation framework and either NUnit or MSTest as your test runner.

Serge Belov
  • 5,633
  • 1
  • 31
  • 40
0

If you're writing your "C#", "ASP.NET" code using Visual Studio (are you?), why aren't you just using the built in unit testing? I use it with VS 2010 and it works great.

Demig0d
  • 158
  • 7
  • The build in Unit Test depends on the edition of Visual Studio you use. Only Premium and above supports Unit Testing. – Andreas Rohde Feb 02 '12 at 08:23
  • Andreas, I think you're not totally correct. It's possible to create unit testing projects in the Professional edition (I don't have any experience with the editions below that). However, some advanced tools like coverage analysis are only in Premium and above. – Ivan Gerken Feb 02 '12 at 08:57
0

TestDriven.NET is really cool. It lets you run your tests inside Visual Studio.

Also ReSharper offers a nice test runner.

Ufuk Hacıoğulları
  • 37,978
  • 12
  • 114
  • 156
0

It depends on what kind of testing you're going to do. If you're going to create true unit tests, then you can use any of *Unit frameworks (NUnit, mbUnit,..) or MSTest for its native integration with Visual Studio.

If you need UI testing automation then Selenium is probably the best known tool. You can check also WatiN.

See also this discussion Automated Web UI Testing

Community
  • 1
  • 1
Ivan Gerken
  • 914
  • 1
  • 9
  • 21