Team,

We need to do EJB 3.1 Unit Test cases. For that we are analyzing tools to do efficient testing. We are taking arquillian, cactus in consideration. Can anyone tell me which tool is suitable for our technology stack in performance wise. We are using JBOSS+Hibernate

link|improve this question

0% accept rate
feedback

2 Answers

You might check out the technique of using the Embedded Container in EJB 3.1.

link|improve this answer
I've found that tricky because of the need to set up a database. Even embedded Derby seems troublesome. – Raedwald Feb 26 at 11:50
feedback

Testing EJBs is my daily challenge. The simple answer is don't. Here are some basic reasons why it's better to have unit tests than integrated tests: http://blog.thecodewhisperer.com/2010/10/16/integrated-tests-are-a-scam/

Nevertheless, if testing EJBs is really something you want and need I've committed few articles how to approach it (JBoss and Hibernate is my configuration as well). Take a look here: http://www.marchwicki.pl/blog/tag/openejb/ Sometimes OpenEJB is an overkill and simple mocking is enough - I suggest Mockito http://mockito.org and some examples I've written http://www.marchwicki.pl/blog/2011/05/the-art-of-testing-an-ejb-application-part-ii/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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