aslak

Arquillian - Eclipse template

May 26th, 2010
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. package ${enclosing_package};
  2.  
  3. import org.jboss.arquillian.api.Deployment;
  4. import org.jboss.arquillian.junit.Arquillian;
  5. import org.jboss.shrinkwrap.api.Archive;
  6. import org.junit.Test;
  7. import org.junit.runner.RunWith;
  8.  
  9. @RunWith(Arquillian.class)
  10. public class ${enclosing_type}
  11. {
  12.    @Deployment
  13.    public static Archive<?> createDeployment()
  14.    {
  15.       return null;
  16.    }
  17.  
  18.    @Test
  19.    public void shouldBeAbleTo() throws Exception
  20.    {
  21.    }
  22. }
Add Comment
Please, Sign In to add comment