如何使用 Eunit:test() 生成一个包含一些编译信息的 xml 文件

发布于 2024-12-09 01:37:19 字数 444 浏览 0 评论 0原文

我有一些 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不可一世的女人 2024-12-16 01:37:19

我不太确定这是您正在寻找的功能。 Eunit 是一个测试框架,因此该函数

eunit:test(...).

将为您提供有关您在模块中编写的任何测试函数的信息。


如果您确实希望以 XML 格式生成这些测试的报告,则只需使用以下形式:

eunit:test([MODULES], [{report, {eunit_surefire, [{dir, "."}]}}]).

其中 MODULES 是您想要测试的任何模块的列表,其他一切保持不变(例如,fibeunit_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

eunit:test(...).

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:

eunit:test([MODULES], [{report, {eunit_surefire, [{dir, "."}]}}]).

where MODULES is a list of any modules you want to do testing of, and everything else stays the same (for example, fib and eunit_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 the eunit_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 using eunit_surefire.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文