views:

210

answers:

2

Do you know any open source tools for testing windows application??

+1  A: 

opensourcetesting.org

Depending on whether its functional or performance testing you wish to carry out its a site with plenty of options and discussions.

MadMurf
A: 

If you design well for test, you can use NUnit for code-level unit tests. There is also NUnitForms, which is an extension to NUnit for testing Windows Forms. I've never used NUnitForms, though. NUnit is very mature and widely used.

Cory McCarty