I want to display the output of my JUnit tests, and the reporting app I use needs an xml file. How do I generate this in IDEA? IDEA v11.1.1, JUnit 4.10. Thank you. -- matt
IntelliJ IDEA's JUnit integration does not support generating JUnit XML reports. You can set up an Application run configuration that would run JUnit's standard runner and save results in its standard format.
IntelliJ IDEA's JUnit integration does not support generating JUnit XML reports. You can set up an Application run configuration that would run JUnit's standard runner and save results in its standard format.
Thanks!