Two IDEs have different results

My colleague and I are working on the same project, but we are using different IDEs. It is using Eclipse 3.4 and I am using IntelliJ 8.0.

I recently advocated using EasyMock, which uses CGLIB, for some unit tests in our project. I have not seen any problems with setting breakpoints in IntelliJ on Partial Layouts created by EasyMock, but my coworker reports that he cannot set breakpoints in Eclipse on Partial Layouts created by EasyMock as he reports that line number information missing for generated classes.

After a desperate google search for an answer, I hope for advice from my friends on SO.

  • Any ideas on why IntelliJ works and Eclipse doesn't work in this case?
  • Any hints for Eclipse configuration that might resolve this issue?
0


source to share


1 answer


Are light mock objects created by some ant script? in this case the settings in eclipse are irrelevant to the generated debug line information. It would then be necessary to check the ant settings to see if there is any difference



+1


source







All Articles