Hi guys
CdiRunner gives me a NPE at EEResourceProducerField:134 when starting up.
In the stack trace there is
at at.fhhagenberg.unitTesting.SurveyBeanWSTest$Proxy$_$$_WeldClientProxy.initMocks(Unknown Source)
so the problem might be my BaseTest:
public abstract class MockitoBaseTest {
@Before
public void initMocks() {
MockitoAnnotations.initMocks(this);
}
}
Any suggestions what to try?