arquillian persistence extension 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 extension to get this done. This is my arquillian test class: @RunWith(Arquillian.class) public class PersonWebServiceIT { private PersonWebService service; @Deployment(testable = false) public static Archive<?> createDeployment() { return ShrinkWrap .create(ZipImporter.class, "test.ear") .importFrom(new File("simple-webservice-ear-1.0.0-SNAPSHOT.ear")) .as