使用钢筋时来自 Common Test 的封面报告
Cover report from Common Test when using rebar
我有一个使用 Rebar 的 Erlang 应用程序,并且有使用 Common Test 编写的测试。我想查看这些测试的测试覆盖率报告,因此我在我的 rebar.config
文件中包含了以下行:
{cover_enabled, true}.
但是,Common Test 报告中的 "Coverage log" link 只会指向显示 "Cover tool is not used" 的页面。我怎样才能让它在 运行 测试时使用封面工具并给我一份封面报告?
rebar.config
中的 cover_enabled
设置是必要的,但不足以激活 Common Test 的封面报告。您还需要在应用程序的根目录中创建一个名为 cover.spec
的文件,其中包含:
{incl_app, foo, details}.
(用您的应用程序名称替换 foo
。)
这应该会为您的申请提供一份封面报告。
我有一个使用 Rebar 的 Erlang 应用程序,并且有使用 Common Test 编写的测试。我想查看这些测试的测试覆盖率报告,因此我在我的 rebar.config
文件中包含了以下行:
{cover_enabled, true}.
但是,Common Test 报告中的 "Coverage log" link 只会指向显示 "Cover tool is not used" 的页面。我怎样才能让它在 运行 测试时使用封面工具并给我一份封面报告?
rebar.config
中的 cover_enabled
设置是必要的,但不足以激活 Common Test 的封面报告。您还需要在应用程序的根目录中创建一个名为 cover.spec
的文件,其中包含:
{incl_app, foo, details}.
(用您的应用程序名称替换 foo
。)
这应该会为您的申请提供一份封面报告。