When running an Arquillian test, first the container is booted, then the deployment is created (usually with ShrinkWrap), then it is deployed into the container and finally the tests are run.
Starting the container and creating the deployment are both time consuming operations and they are independent. It could save time to have them run in parallel, and when both are ready to do the deployment.
When running an Arquillian test, first the container is booted, then the deployment is created (usually with ShrinkWrap), then it is deployed into the container and finally the tests are run.
Starting the container and creating the deployment are both time consuming operations and they are independent. It could save time to have them run in parallel, and when both are ready to do the deployment.