Created

Embed URL

HTTPS clone URL

SSH clone URL

You can clone with HTTPS or SSH.

Download Gist

Before/After

View BeforeAfterTest.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
@RunWith(Arquillian.class)
public class BeforeAfterTest {
 
@Deployment(name = "X") @TargetsContainer("A")
public static void WebArchive create1() {}
 
@Deployment(name = "Y") @TargetsContainer("B")
public static void WebArchive create1() {}
 
// executed incontainer with testInContainerOnContainerA
@Before @OperateOnDeployment("X")
public void beforeInContainerWhenTestRunAgainstX() {}
 
// executed on client with testAsClientInContextOfDeploymentX
@Before @RunAsClient @OperateOnDeployment("X")
public void beforeOnClientWhenTestRunAgainstX() {}
 
// executed incontainer with testInContainerOnContainerB
@Before @OperateOnDeployment("Y")
public void beforeInContainerWhenTestRunAgainstY() {}
 
@Test @OperateOnDeployment("X")
public void testInContainerOnContainerA() {}
 
@Test @OperateOnDeployment("Y")
public void testInContainerOnContainerB() {}
 
@Test @RunAsClient @OperateOnDeployment("X")
public void testAsClientInContextOfDeploymentX() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Something went wrong with that request. Please try again.