I have a question regarding the suite,
If I execute one specific test that is annotated like this. Now If I run this one test only is there a way to not deploy all the other deployments to the server? I am trying to understand the benefit of using many "micro deployments" but feel like I am missing the point on why to use them. I am stuck with many separate deployments regardless of how I execute my tests, as all or a specific test.
@RunWith(Arquillian.class)
public class BusinessObjectIT extends ArquillianDeployments {
@Test
@OperateOnDeployement("BusinessObjects")
public void testInterestRate() {
//do some tests
}
}