You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @arthurdn , indeed, this is currently not foreseen. However, it shouldn't be too difficult to add this.
How would you see this happening? Add a @dbunit annotation above the feature containing a content field with the closure? Like in the following...
@DbUnit(content= {
User(id: 1, name: 'janbols')
})
def"test"() {
when:
def result =newSql(dataSource).firstRow("select * from User where name = 'janbols'")
then:
result.id ==1
}
Content is called for all cases.
How specify it for each case?
The text was updated successfully, but these errors were encountered: