EJB-WAR-Archetype 7.14.0 error

Hi @Leo,

the plain JUnit test is not aware of named CDI beans out of the box.

I usually add

Mocks.register("beanName", new Bean());

to my test method and access DelegateExpressions.

I haven’t done this with expressions, but assume it should work as well.

Hope this helps, Ingo