Skip to content

Commit

Permalink
ARQ-225 Changed to add package
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakknutsen committed Aug 13, 2010
1 parent a3873ff commit 4d87130
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -12,14 +12,15 @@
@RunWith(org.jboss.arquillian.junit.Arquillian.class)
public class WorkHardEjbTestCase
{

@EJB
private WorkHard hardWorker;

@Deployment
public static JavaArchive createTestArchive() {
return ShrinkWrap.create(JavaArchive.class, "test.jar")
.addClasses(WorkHard.class, WorkHardBean.class);
.addPackage(
WorkHard.class.getPackage()
);
}

@Test
Expand Down

0 comments on commit 4d87130

Please sign in to comment.