Tagged Questions
0
votes
1answer
591 views
Exception attempting to inject Remote ejb-ref when running multiple tests with Arquillian
I have a number of test classes that are run using Arquillian (1.0.2.Final) using the 'arquillian-glassfish-embedded-3.1' container (1.0.0.CR3).
If I run any of the test classes in isolation they run ...
2
votes
1answer
275 views
EJB 3.1 - implementation of javax.security.auth
As I understand javax.security.auth is an API for authentication and authorization.
I understand that security should be implemented by the container provider and the bean-provider can just use it ...
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;
...