如何使用 @Build 为 grails 集成测试创建多种类型的测试数据

Posted

技术标签:

【中文标题】如何使用 @Build 为 grails 集成测试创建多种类型的测试数据【英文标题】:How do I create multiple types of test data for a grails integration test using @Build 【发布时间】:2017-07-28 17:49:39 【问题描述】:

第一个域运行良好。但是第二个域不能有“build”方法

import grails.test.spock.IntegrationSpec
import grails.buildtestdata.mixin.Build

@Build(Domain1)
@Build(Domain2)
class DomainServiceSpec extends IntergrationSpec 

    def "test mock" () 
     Domain1.build(a: a, b: b, c: c) //working fine
     Domain2.build(a: a, b: b, c: c) //"build" method is not recognized
    

【问题讨论】:

【参考方案1】:
@Build([Domain1, Domain2])

我建议你阅读插件文档:Unit Test Support

【讨论】:

以上是关于如何使用 @Build 为 grails 集成测试创建多种类型的测试数据的主要内容,如果未能解决你的问题,请参考以下文章

如何在 grails 3 中运行单个集成测试?

如何在 Grails 2.0 服务中对 i18n 注入 messageSource 的使用进行单元或集成测试

Grails - 在哪里放置测试文件以及如何加载它们

Grails 2.0 集成测试污染?

Grails 2.3 迁移脚本不会在集成测试期间运行

具有 to_date 的查询的 Grails 集成测试?