throws Exception
{
final DefaultThreadPool pool = new DefaultThreadPool( "default", 10 );
pool.setDaemon( false );
pool.enableLogging( new ConsoleLogger( ConsoleLogger.LEVEL_INFO ) );
pool.execute( new DummyRunnable() );
}
public void testWithoutThreadContext()
throws Exception
{