Hi,
while trying to make the unit-tests run with maven I stumbled over something. I got some crazy errors when running some tests. While tracing them down, I could see that the "problem output" fails cause no format is specified. This is because a NullPointerException occurs in the compiler ... this seems to happen when an error is reported. The stupid thing is that probably this test will run on systems with "en", "fr", "jp" or "zh_CN" language. In my case it's "de_DE" and I get some really nasty NullPointerExceptions ... I think we should harden this code and make "en" the fallback if there is no resource bundle for the current users language. And we do need quite some Null checks in the code ... it currently produces NPE in way to many places. Chris