I have a unit test that fails sometimes and debugging it is a pain because I don\'t know why it sometimes fails.
Is there a way inside Eclipse that I can run a JUnit
There is a test decorator for this. See Junit API at http://junit.org/apidocs/junit/extensions/RepeatedTest.html
for example
@Test @Repeat(10) public void FailRandomlyNeedToKnowWhy() { .... }