When I run a JUnit that fails in Eclipse I sometimes get the call stack similar to this:
java.lang.NullPointerException
at com.a.b.c.d.e.MyTest.method(MyTest.java:73)
at com.a.b.c.d.e.MyTest.testConvertRawInternalAtomAllowCompound(MyTest.java:65)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
.... 57 more
How can I remove the cut-off? I’d like to see the whole call stack. Thanks!
I hope this is at least a bit useful.
From here :