我的src / test /文件夹包括单元和功能测试.功能测试的类路径是黄瓜,而单元测试则没有.那么我该怎么运行单元测试?
非常感谢你.
P.S .:我知道很容易使用“包含”逻辑来选择测试.例如,为了在我的情况下运行功能测试,我可以简单的使用这个
./gradlew test -Dtest.single = cucumber / ** /
但是,我不知道如何以简单的方式排除测试.
BTW,我正在使用毕业1.11.
解决方法
The documentation的任务解释它,以一个例子和一切:
apply plugin: 'java' // adds 'test' task test { // ... // explicitly include or exclude tests include 'org/foo/**' exclude 'org/boo/**' // ... }