In my former Spring development, it is easy to spy a Spring bean via @SpyBean
or Mockito spy
method, and do some stubbing and verifying it in the testing codes.
But when I tried to do the same steps in Arquillain test for Jakarta EE applications, it does not work as expected.
@Inject CargoInspectionService cargoInspectionService;
@Test
public void testCargoWasHandled(){
var cargoInspectionServiceSpy = spy(cargoInspectionService);
doNothing().when(cargoInspectionServiceSpy).inspectCargo(eq(new TrackingId("AAA")));
// some real actions.
verify(cargoInspectionServiceSpy, atLeastOnce()).inspectCargo(any(TrackingId.class));
}
There is no interactions of mocked/spyed object at all.
question from:
https://stackoverflow.com/questions/65855904/how-to-spy-a-cdi-bean-in-arquillian-test 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…