diff --git a/container/test-api/src/main/java/org/jboss/arquillian/container/test/api/Deployment.java b/container/test-api/src/main/java/org/jboss/arquillian/container/test/api/Deployment.java index 14ff19021..041bd9591 100644 --- a/container/test-api/src/main/java/org/jboss/arquillian/container/test/api/Deployment.java +++ b/container/test-api/src/main/java/org/jboss/arquillian/container/test/api/Deployment.java @@ -78,6 +78,9 @@ /** * Defines if this deployment should be wrapped up based on the protocol so the testcase can be executed incontainer. + *

+ * Setting this to {@code false} for a deployment used in {@link RunAsClient} tests allows you to avoid needing to + * package client-side test resources in the deployment. */ boolean testable() default true; }