/**
* 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());
}