作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在开发 API 时,我经常在 main 函数中编写测试代码,但因为 D 已经集成了 unittest,所以我想开始使用它们。
我当前的工作流程如下,我有一个脚本可以监视任何 .d 文件中的文件更改,如果脚本找到修改后的文件,它将运行 dub build
问题是 dub build
似乎没有构建单元测试
module foo
struct Bar{..}
unittest{
...
// some syntax error here
...
}
dub test
,它只会编译单元测试.但我不想同时运行和编译它们。
dub test module foo
最佳答案
您可以使用 trait getUnittests 编写自定义测试运行器。 .
getUnitTests
Takes one argument, a symbol of an aggregate (e.g. struct/class/module). The result is a tuple of all the unit test functions of that aggregate. The functions returned are like normal nested static functions, CTFE will work and UDA's will be accessible.
main()
你应该能够编写一些需要任意数量的模块的东西:
void runModuleTests(Modules...)()
{
static if (Modules.length > 1)
runModuleTests!(Modules[1..$]);
else static if (Modules.length == 1)
foreach(test; __traits(getUnitTests, Modules[0])) test;
}
当然是开关
-unittest
必须传递给 dmd
关于d - 是否可以在不运行它们的情况下编译 unittest 并为特定模块显式运行 unittest?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35075253/
我是一名优秀的程序员,十分优秀!