3030import static org .mockito .Mockito .never ;
3131import static org .mockito .Mockito .times ;
3232import static org .mockito .Mockito .verify ;
33- import static org .mockito .Mockito .verifyZeroInteractions ;
33+ import static org .mockito .Mockito .verifyNoInteractions ;
3434
3535import org .apache .fop .fo .Constants ;
3636import org .apache .fop .traits .BorderProps ;
@@ -96,7 +96,7 @@ public void testDrawRectangularBordersWithNullBorders() throws IOException, IFEx
9696 BorderProps nullBorderProps = null ;
9797 new BorderPainter (graphicsPainter ).drawRectangularBorders (new Rectangle (0 , 0 , 1000 , 1000 ),
9898 nullBorderProps , nullBorderProps , nullBorderProps , nullBorderProps );
99- verifyZeroInteractions (graphicsPainter );
99+ verifyNoInteractions (graphicsPainter );
100100 }
101101
102102 @ Test
@@ -119,7 +119,7 @@ public void testDrawRoundedBordersWithNullBorders() throws IOException, IFExcept
119119 BorderProps nullBorderProps = null ;
120120 new BorderPainter (graphicsPainter ).drawRoundedBorders (new Rectangle (0 , 0 , 1000 , 1000 ),
121121 nullBorderProps , nullBorderProps , nullBorderProps , nullBorderProps );
122- verifyZeroInteractions (graphicsPainter );
122+ verifyNoInteractions (graphicsPainter );
123123 }
124124
125125 @ Test
0 commit comments