}
public void testGetContextClassLoader() throws Exception
{
log.debug("+++ testGetContextClassLoader()");
IOSession bean = getIOSession();
try
{
bean.getContextClassLoader();
//doFail("Was able to call IOSession.getContextClassLoader");
log.debug("Was able to call IOSession.getContextClassLoader");
}
catch(Exception e)
{
log.debug("IOSession.getContextClassLoader failed as expected", e);
}
bean.remove();
}