Tagged Questions
1
vote
1answer
258 views
Using Spock to stub both Gorm and other methods in a Grails domain class
Sorry if this is a newbie question but I would really appreciate any insights the community could offer with regard to a problem I am having with stubbing the following method which I have in a Grails ...
0
votes
1answer
87 views
Use of GORM methods in Integration test
I'm trying to use gorm find method on my domain class, inside of an Spock Integration Spec.
My code:
class myDomainClassSpec extends IntegrationSpec{
...
def 'my test'() {
when: ...
...
2
votes
2answers
3k views
What are the restrictions of Grails' mockDomain() method?
I'm writing a Spock Spec (unit test) for a Service in Grails 1.3.5, and I've run across the following error:
No signature of method: myapp.Thing.findAll() is applicable for argument types: ...