Package org.mockito.internal.creation

Examples of org.mockito.internal.creation.CglibMockMaker


    /**
     * Scans the classpath to find a mock maker plugin if one is available,
     * allowing mockito to run on alternative platforms like Android.
     */
    static MockMaker findPlatformMockMaker() {
        return findPluginImplementation(MockMaker.class, new CglibMockMaker());
    }
View Full Code Here

TOP

Related Classes of org.mockito.internal.creation.CglibMockMaker

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.