我在eclipse中使用gradle运行spock测试时遇到异常。在Gradle任务选项卡"运行构建"有一个红色的失败图标,当我右键单击它以查看错误时它给出了InternalTestExecutrionException。
org.gradle.tooling.internal.protocol.test.InternalTestExecutionException:运行测试时出错
我的代码非常简单,下面是代码是我在gradle项目构建中缺少的东西。
import spock.lang.*
class HelloSpockSpec extends spock.lang.Specification {
def "length of Spock's and his friends' names"() {
expect:
name.size() == length
where:
name | length
"Spock" | 3
"Kirk" | 4
"Scotty" | 6
}
}
答案 0 :(得分:0)
通过在build.gradle文件中添加代码解决了上述问题。
申请插件:'groovy'