带EUnit的新模块

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带EUnit的新模块相关的知识,希望对你有一定的参考价值。

  1. %% Author:
  2. %% Created:
  3. %% Description:
  4. -module().
  5.  
  6. %% ====================================================================
  7. %% Include files
  8. %% ====================================================================
  9.  
  10. -ifdef(EUNIT).
  11. -include_lib("eunit/include/eunit.hrl").
  12. -endif.
  13.  
  14. %% ====================================================================
  15. %% Exported Functions
  16. %% ====================================================================
  17. -export([]).
  18.  
  19. %% ====================================================================
  20. %% API Functions
  21. %% ====================================================================
  22.  
  23.  
  24.  
  25. %% ====================================================================
  26. %% Local Functions
  27. %% ====================================================================
  28.  
  29.  
  30.  
  31. %% ====================================================================
  32. %% Test Functions
  33. %% ====================================================================
  34. -ifdef(EUNIT).
  35. -endif.

以上是关于带EUnit的新模块的主要内容,如果未能解决你的问题,请参考以下文章

eunit 测试超时

多个应用程序的 Eunit 错误

在erlang eunit故障中打印测试夹具描述

忽略 git 子模块的新提交

JDK9的新特性:JPMS模块化

为啥 Eunit 坚持我的函数返回 ok, value 而不是?