InterviewSolution
Saved Bookmarks
| 1. |
How do I test things that must be run in a J2EE container (e.g. servlets, EJBs)? |
|
Answer» Refactoring J2EE components to delegate functionality to other objects that don't have to be run in a J2EE container will improve the design and testability of the software. Cactus is an open source JUnit extension that can be used for unit testing server-side java code. |
|