如何使用 Eunit:test() 生成一个包含一些编译信息的 xml 文件
我有一些 erlang 文件(.erl)。我编译它们。现在我想使用一些函数来生成一个 xml,它是关于这些文件的编译信息。
这是一个地址, http://www.erlang.org/doc/apps/eunit/eunit.pdf
在这个pdf中,有一个函数eunit:test/2可以生成xml文件。
eunit:测试([fib, eunit_examples], [{报告,{eunit_surefire,[{dir,"。"}]}}])。
但我不知道这些参数代表什么。我只知道 fib = modulename dir =generate location.eunit_examples 怎么样? ,report? ,eunit_surefire?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太确定这是您正在寻找的功能。 Eunit 是一个测试框架,因此该函数
将为您提供有关您在模块中编写的任何测试函数的信息。
如果您确实希望以 XML 格式生成这些测试的报告,则只需使用以下形式:
其中
MODULES
是您想要测试的任何模块的列表,其他一切保持不变(例如,fib
和eunit_examples
是您给出的示例中正在测试的两个模块。)report
原子表示您想要生成报告,并且eunit_surefire
原子表示使用什么格式生成报告。我不确定除了使用eunit_surefire
之外还有其他方法可以使用 XML 生成报告。I'm not really sure this is the function you are looking for. Eunit is a testing framework, and thus the function
will give you information about any testing functions you have written within the modules.
If indeed you are looking to generate reports on those tests, in XML format, you simply use the form:
where
MODULES
is a list of any modules you want to do testing of, and everything else stays the same (for example,fib
andeunit_examples
are the two modules that are being tested in the example you gave.)The
report
atom says that you want to generate a report, and theeunit_surefire
atom says what format to generate the report with. I'm not sure there are any other ways to generate the reports with XML besides usingeunit_surefire
.