Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
ApplicationComposer example:
@RunWith(ApplicationComposer.class)
public class BasicObserverTest {
@Inject
private BeanManager beanManager;
@Test
public void test() throws Exception
}
Embedded EJBContainer API example:
public class MovieTest extends TestCase {
@Inject
private BeanManager beanManager;
@Test
public void test() throws Exception { assertNotNull(beanManager); }
@Before
protected void setUp() throws Exception