The introductory Arquillian example in Chapter 03 uses a remote JBoss container.
The test case deploys the war file built from the main java resources that probably do not contain the test case:
[source,java]
@Deployment
public static WebArchive createDeployment() {
return ShrinkWrap.createFromZipFile(WebArchive.class, new File(
"target/feedback.war"));
}
As the test case assumes to be running in the container I guess that the test case will not run due to the missing class in the Deployment.
Or is there something I have overseen?
Kind regards,
Robert