Unit Test Software

  • Thread starter Thread starter ReneMarxis
  • Start date Start date
R

ReneMarxis

Hello

Can anyone tell me if there exist some tools for doing automated unit
tests?
What i need is something like NUnit ore #unit but with the possebility
to feed the tests from external, eg. some xml file and get the results
also as file.

The project i am going to use it is very big and automated unit tests
arebe very required.

I am using the Team Edition of VS 2005 (with VB)

_thanks rene
 
At the end of the day, things like NUnit are frameworks.

You have to write the tests. if you're tests need to get something from
xml, so be it...you gotta write it.
Writing tests takes time. Its not a short-term-gain endeavor.

"Automated" does not mean auto generate for you.

Automated means you code 'em up, and with a push of a button or some other
action (CruiseControl.Net?) you get results back without going through them
line by line.
 
Back
Top