MLet mlet = new MLet(new URL[0], ClassLoader.getSystemClassLoader().getParent(), delegates);
// Be sure the MLet cannot load the class
try
{
mlet.loadClass(className);
fail("MLet should not be able to load the class");
}
catch (ClassNotFoundException ignored)
{
}