I have Java unit tests which I run using JUnit plugin in Eclipse. After all tests are completed in eclipse, I can export the result in .xml format which I use it to upload the results in test result tracking tool.
Now I am running same tests in AIX system where I am using command line to run JUnit tests.
My command is
java org.junit.runner.JUnitCore com.rsa.qa.sae.test.testClassName
Now I want to get results of these tests in a similar XML file.
How can I get it?