vote up 1 vote down star

Hi,

I have a Grails integration test class FacetServiceTests that extends WebFlowTestCase. In the setUp method I mock a single method of FacetService:

FacetService.metaClass.loadLoggedInUserFacetDTOs = {-> return [facetDTO]}

When I run only the tests in FacetServiceTests they all pass and my mock method is executed. However, if I run the entire test suite, one of the tests in FacetServiceTests fails because my mock method is not used (the real method is called instead).

I tried adding the following code after the line above to encourage Groovy to use this mock method

GroovySystem.metaClassRegistry.setMetaClass(FacetService, FacetService.metaClass)

But the mock method is still not used. Incidentally, I reset the metaClass in the tearDown method:

void tearDown() {
    // Restore the default metaclasses
    FacetService.metaClass = null
}

Any idea why my mock method is not used when the entire suite of tests is run?

flag

38% accept rate
Can you verify that the setup method is being called for the test suite? – Miguel Ping Sep 3 at 14:48
What is the scope of your service, "flow"? Might you somehow getting a previously created instance of your service, used somewhere else in your test suite? – Alex Stoddard Sep 4 at 16:47
Grails? These Grails: grails.org ? Never heard of it but looks interesting. – Workshop Alex Sep 4 at 21:48
Yes, those grails. It is interesting, particularly if you're a Java web developer. – Don Sep 7 at 15:36

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.