New article: Dependency Injection and Unit Testing
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
The current issue of the JavaRanch Journal has an article by Christophe Verré about Dependency Injection and UnitTesting. You can check it out here, and if you have comments or question, feel free to post them in this thread.
You have already noticed that FarmServlet is tightly coupled to the FarmEJBRemote instance, which was retrieved via a call to "FarmEJBUtil.getHome().create()". It makes it very hard to test. When unit testing, we don't want to use any database. We don't want to access an EJB server either. That would make unit tests both difficult to execute and slow. So in order to unit test the FarmServlet class smoothly, we'd better make it loosely coupled. To remove the tight dependency between FarmServlet and FarmEJBRemote, we could use a setter based injection:
In the second one, it still depends on FarmEJBRemote, doesn't it?
To be or not to be. It's a question.
Frank Carver
Sheriff
Joined: Jan 07, 1999
Posts: 6913
posted
0
It looks like "FarmServlet is tightly coupled to the FarmEJBRemote instance" should maybe be "FarmServlet is tightly coupled to the FarmEJBUtil class".