Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Might be a basic question but I want to know does Hudson run Junit test cases or can be used to run integration test cases?

share|improve this question
A simple google of "Hudson Junit" answers this question.. – Roy Truelove Sep 21 '11 at 18:30

1 Answer

Hudson, or more recently Jenkins, can be used to run whatever you want, whenever you want (e.g. on a schedule, or after each code check-in).

You can run an Ant script, MSBuild file, shell script, batch script, a combination of these things.. anything.

There is built-in support for displaying reports of your JUnit tests, but with over 400 plugins, you should be able to do what you need to.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.