public void test8b_getBeanFromPluginClassloader_altSolutionPath() throws PluginBeanException,
PlatformInitializationException {
// This test is to validate a bug that had existed where a solution path ending in '/' was causing
// the PluginClassLoader to not be able to open plugin jars, thus you would get ClassNotFound exceptions
// when accessing plugin classes.
MicroPlatform mp = new MicroPlatform( getSolutionPath() + "/" );
mp.define( ISolutionEngine.class, SolutionEngine.class );
mp.define( IServiceManager.class, DefaultServiceManager.class );
mp.define( IPluginProvider.class, Tst8PluginProvider.class ).start();
// reload should register the beans
pluginManager.reload();
try {