JBoss Arquillian is a testing platform for the JVM that enables developers to create automated integration, functional and acceptance tests for Java middleware.
3
votes
2answers
2k views
Explicite Local EJB not injected with Arquillian
I use Arquillian to test an stateless session bean that has an explicit local and remote interface. But in the test Arquillian does not "inject" anything in a field that has the type of the local ...
6
votes
2answers
3k views
Cannot run arquillian tests
I'm trying to use Arquillian for some unit tests, however I can't find why they fail when deployed using Maven.
This is the class test:
package com.ndeveloper.spec.test;
import javax.inject.Inject;
...
2
votes
1answer
105 views
How are the jsf-api and jsf-impl related?
For some time I am struggling to get an arquillian test case running. This test involves classes rooted in JSF classes and it ran into an ClassFormatError: Absent Code as the implementation for the ...
2
votes
3answers
758 views
Weld (CDI): where do I put my test-only beans.xml that configures <alternatives>?
My webapp has a non-empty production beans.xml under src/main/resources/META-INF.
Now, for my tests, I need to swap out 1 bean with an alternative.
Where do I put this test beans.xml which contains ...
1
vote
2answers
220 views
How to combine manual insert and JPA Id generation?
I am running in-container tests with arquillian. I am prepopulating the database by adding an import.sql to the deployment. During the test I would like to create some more entities.
Unfortunately, ...
1
vote
0answers
289 views
arquillian-glassfish-embedded-3.1 1.0.0.CR3 configuring JDBC datasource
I was trying to use arquillian-glassfish-embedded-3.1 container to test and EJB3 application. I was trying to figure out how to set up a simple JDBC datasource that could be injected as a resource to ...
0
votes
1answer
92 views
How to add test classes to an imported ear file and run server side with arquillian?
I want to create integration tests using arquillian. As deployment i want to use the ear that is also used to deploy in production.
So this is my deployment:
@Deployment(testable = true)
public ...
0
votes
2answers
127 views
arquillian persistence extention doesn't work
I'm trying to get my webservice tested. This webservice uses ejb with jpa to retrieve its data. So i want to use the arquillian extention to get this done.
This is my arquillian test class:
...
0
votes
1answer
661 views
How to write Arquillian tests for JSF classes
I am trying to perform arquillian tests on a data model rooted in the JSF API. I am getting this error:
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.046 sec <<< FAILURE!
...
0
votes
2answers
2k views
Getting a “WELD-001408 Unsatisfied dependencies error when deploying a class injected with an interface”
I'm doing some unit tests using Arquillian on JUnit4 and Jboss6. There is a facade(SomeFacadeclass) that has the "SomeClass"(which is an interface) injected to it. When Arquillian deploys the test.war ...