如何执行单个grails集成测试?
grails test-app com.mytest.UserIntegrationSpec 不起作用
我有一个名为com.mytest.UserIntegrationSpec的集成测试:
package com.mytest
import grails.test.mixin.integration.Integration
import grails.transaction.*
import spock.lang.*
@Integration
@Rollback
class UserIntegrationSpec extends Specification {
:
答案 0 :(得分:0)
尝试
grails test-app integration: com.mytest.UserIntegrationSpec
。
执行单个测试时,我使用该命令,它可以工作。