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

Good afternoon,

I am running some JUnit tests on my application using ant. In doing so I am following the instructions in the step-by-step Spring-MVC tutorial. [*]

The instructions never mention a call to org.junit.runner.JUnitCore.main() in running a test. My question is, is it necessary to call org.junit.runner.JUnitCore.main to run a test if you are running the tests through command-line ant (as opposed to an IDE)? Or is ant smart enough to locate all the methods in a TestCase subclass and run all of them without an explicit call to JUnitCore.main()?

[*] http://static.springsource.org/docs/Spring-MVC-step-by-step/part3.html

Thanks,
ktm

share|improve this question

1 Answer

up vote 2 down vote accepted

Ant knows what to do. As long as you're using the right ant-task for that (like jUnit task: http://ant.apache.org/manual/Tasks/junit.html).

share|improve this answer
So does it run every method in that class, in the order that it appears in the class? I ask this because the tutorial gives a method called setUp which initializes an object, which is the first method in the class. Following this is the method that performs the test. If I were to switch the order of the two methods, would it not work? I am about to figure this out for myself, but I'd just like to confirm that the order of methods is indeed significant. – ktm5124 Feb 10 '11 at 20:22
1  
well, the order in which the methods were declared is irrelevant, as long as they are called setUp and test***. If you use jUnit 4, you can just annotate the methods as @BeforeTest, @BeforeClass, @Test – chahuistle Feb 10 '11 at 20:29
I see, thanks! x – ktm5124 Feb 10 '11 at 20:31

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.