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?
