44454647484950
/** * @param targetTest the test class instance where the rule is declared. Cannot be null. */ public MockitoJUnitRule(Object targetTest) { checkNotNull(targetTest, "Mockito JUnit rule target"); this.jUnitRule = new JUnitRule(targetTest); }