*/
@SuppressWarnings("nls")
public void test_getBundle_LStringLLocaleLClassLoaderLControl_WithSecurityManager() {
SecurityManager sm = System.getSecurityManager();
try {
System.setSecurityManager(new CanSetSM());
getBundleWithControlTester();
} finally {
System.setSecurityManager(sm);
}
}