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?
Asked
Active
Viewed 179 times
0

Patton
- 2,002
- 3
- 25
- 36
1 Answers
1
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.

Vineet Reynolds
- 76,006
- 17
- 150
- 174
-
thank you very much for the info. One more question, is there a way to download Arquillian related jars without use of Maven/ivy? something like zip? – Patton Jan 21 '13 at 09:36
-
1I dont think that is possible and neither is it recommended. Maven/Ant+Ivy/Gradle is recommended because of the pluggable nature of Arquillian. Every extension of Arquillian has it's own release cycle, so having a dependency management tool is the best way to go about using Arquillian. – Vineet Reynolds Jan 21 '13 at 09:45