Eclipse debugging "source not found"

Posted by James on Stack Overflow See other posts from Stack Overflow or by James
Published on 2009-12-25T00:27:59Z Indexed on 2010/05/28 22:02 UTC
Read the original article Hit count: 255

Filed under:
|
|

I just started using Eclipse so go easy on me ;). But when trying to debug a JUnit test case I get a dialog that states the the source is not found when I get to this line in the code in my test method:

Assert.assertEquals(1, contents.size());

I know I should probably go and try and download the source from somewhere, but I really don't want to because I have no interest in stepping into the JUnit code. I have the JUnit runtime jar so Why does Eclipse expect me to have all the referenced tools source code in order to debug my own code (seems somewhat silly)?

My main question is though, how can I tell Eclipse to skip this dialog when the source is not available and allow me to continue to debug my own code?

[Edit]

I've isolated the cause of this. It seems that Eclipse seems to think it needs the source when an exception is thrown by the internal JUnit code. In general is there anyway to tell it that it doesn't and just have it throw up an error dialog of some kind instead?

© Stack Overflow or respective owner

Related posts about java

Related posts about eclipse