Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package ${enclosing_package};
- import org.jboss.arquillian.api.Deployment;
- import org.jboss.arquillian.junit.Arquillian;
- import org.jboss.shrinkwrap.api.Archive;
- import org.junit.Test;
- import org.junit.runner.RunWith;
- @RunWith(Arquillian.class)
- public class ${enclosing_type}
- {
- @Deployment
- public static Archive<?> createDeployment()
- {
- return null;
- }
- @Test
- public void shouldBeAbleTo() throws Exception
- {
- }
- }
Add Comment
Please, Sign In to add comment