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

Puzzled: I added a new test case function to a junit test. I run the entire class from either Eclipse or from maven, and the old case (there was only one before) runs and the new one does not. It doesn't fail. A breakpoint in it is not hit. The new function has an @Test annotation, just like the old one.

Junit version is 4.5.

Is there a way to get junit to log or trace its thought process in selecting functions to run?

share|improve this question

1 Answer

up vote 1 down vote accepted

I guess you still ran old class file, as new Java file was not be compiled successfully. You could modify an old test method to see if the class is really modified: to let successful method to fail.

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.