Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a dispatcher service which delegates to other services. I am attempting to test dispatching to the email service. (I have not tested the other services)

The integration test on the dispatcher service works fine, reading data from the database to build the email, up until the point it attempts to invoke emailService.send(). I was expecting the EmailService to be injected, but it appears not to be:

class DispatchService {
    EmailService emailService
    ...

What am I missing? All service, domain, and test classes were created using the Grails tools, I'm not doing anything really bizarre or custom. I've googled extensively, but can't seem to find the solution to match this problem.

Thanks!

share|improve this question

1 Answer

Dammit. Old habits die hard.

Commenting out this line from within the test method fixes the EmailService injection problem.

//DispatchService dispatchService = new DispatchService()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.