grails.gorm.tests.QueryByNullSpec.groovy Maven / Gradle / Ivy
package grails.gorm.tests
class QueryByNullSpec extends GormDatastoreSpec {
void 'Test passing null as the sole argument to a dynamic finder multiple times'() {
// see GRAILS-3463
when:
def people = Person.findAllByLastName(null)
then:
!people
when:
people - Person.findAllByLastName(null)
then:
!people
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy