Reputation: 2032
Is there anything similar to Embedded Glassfish
, where one can unit test EJBs, for Jboss 4.3 AS
. I have googled and came to know about a tool Arquillian
and later figured out that it doesnt support Jboss 4.3 container Check here. Is there any similar open source tool available to unit test EJBs on Jboss 4.3?
Upvotes: 0
Views: 181
Reputation: 76709
Firstly, the URL to the reference guide in your question is "a bit" out of date; please don't refer that since the list of supported containers, as well as other info is out of date. The Arquillian Reference Guide is hosted in Confluence where the list of supported container adapters is maintained.
Secondly, you're likely to have some success with the JBoss AS 4.2 containers, as reported by other users in the JBoss Community forum. There is no embedded container available for 4.x, since the embeddable EJB container was born out the EJB 3.1/Java EE 6 specification.
Upvotes: 1