Package org.mockito.internal.rules

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

Related Classes of org.mockito.internal.rules.JUnitRule

Copyright © 2018 www.massapicom. 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.