我正在使用Play framework 2.3。
当我运行activator testOnly controller.MyTestClassName.*
时,它会运行所有测试(包括MyTestClassName),就像activator test
一样。
我只需要运行一些测试。怎么做?
答案 0 :(得分:16)
这就是必须要做的事情:
activator "test-only controller.MyTestClassName"
带引号!
答案 1 :(得分:0)
参数为test-only
而不是testOnly
。
试试这个:
activator test-only controller.MyTestClassName
编辑:有关详细信息,请查看文档:{{3}}
答案 2 :(得分:0)
https://stackoverflow.com/a/43103983
sbt" test:仅测试控制器.MyTestClassName。*"
激活器"测试:仅测试控制器.MyTestClassName。*"