Examples of JUnitRule


Examples of org.mockito.internal.rules.JUnitRule

    /**
     * @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);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.