Mockito - Wanted but not invoked: Actually, there were zero interactions with this mock
问题 I know there are already at least two same questions asked, but I still can't figure out why I am getting the exception. I need to unit test this method: void setEyelet(final PdfWriter printPdf, final float posX, final float posY) { InputStream is = WithDefinitions.class.getResourceAsStream(RES_EYELET); //RES_EYELET is a pdf. PdfContentByte canvas = printPdf.getDirectContent(); PdfReader reader = new PdfReader(is); PdfImportedPage page = printPdf.getImportedPage(reader, 1); canvas.addTemplate