在我的grails应用程序中,我使用Spock和Geb来执行功能测试。
由于所有测试都在同一个数据库上运行,因此我想提供正在执行CRUDSpec类的顺序。如何指定?
实施例
答案 0 :(得分:6)
事实证明,订单可以指定如下:
grails -Dserver.port=8090 test-app functional: LoginCRUDSpec,PayeeCRUDSpec
另一个使用here包的示例:
// Run all tests in the “admin” package
grails test-app functional: admin.**.*
// Run all tests in the “cart” package
grails test-app functional: cart.**.*
使用no-arg' grails test-app '订购测试的最终方式是按字母顺序命名测试类。
T001_LoginCRUDSpec
T002_PayeeCRUDSpec
T003_ServiceCRUDSpec
T004_DescrParamCRUDSpec