This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RunWith(Arquillian.class) | |
public class BusinessLogicTest { | |
// without .addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml") Arquillian is not injecting the EJB here (its null). | |
@EJB | |
BusinessLogic bl; | |
@Deployment | |
public static JavaArchive createDeployment() { | |
return ShrinkWrap.create(JavaArchive.class) |
OlderNewer