Yes once your test fixed it works on up to date trunk/master:
@RunWith(ApplicationComposer.class)
public class BusinessBeanIT {
@Module
@Classes(value = {BusinessBean.class, AuthUtil.class}, cdi = true)
@Jars("deltaspike-")
public WebApp app() {
return new WebApp();
}
@Configuration
public Properties config() throws Exception {
Properties p = new Properties();
//p.put("logging.level.OpenEJB.startup", "FINE");
//p.put("logging.level.OpenEJB.startup.config", "FINE");
//p.put("openejb.jul.forceReload", Boolean.TRUE.toString());
return p;
}
@EJB
private BusinessBeanLocal businessBean;
@Test
public void testSomeMethod() {
businessBean.doSomething();
}
}
Romain Manni-Bucau
@rmannibucau
http://www.tomitribe.com
http://rmannibucau.wordpress.com
https://github.com/rmannibucau
2014-10-18 11:35 GMT+02:00 hwaastad <[email protected]>:
> OK,
> but I was expecting 'deltaspike-' also would work after your last change (I
> test[1,4].7.2-SNAPSHOT)
> but it does'nt. Maybe the snapshots are'nt updated yet....
>
> br hw
>
>
>
> --
> View this message in context:
> http://tomee-openejb.979440.n4.nabble.com/Tomee-jars-tp4672316p4672410.html
> Sent from the TomEE Users mailing list archive at Nabble.com.