I have some erlang file(.erl).And I compile them. Now I want to use some function to generate a xml which is about the compling info of these files.
Here is a address, http://www.erlang.org/doc/apps/eunit/eunit.pdf
In this pdf,There is a function eunit:test/2 which can generate a xml file.
eunit:test([fib, eunit_examples], [{report,{eunit_surefire,[{dir,"."}]}}]).
But i don't know these parameters represent. I just know fib = modulename dir = generate location.What about eunit_examples? ,report? ,eunit_surefire?