KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > avalon > excalibur > thread > impl > test > DefaultThreadPoolTestCase


1 /*
2  * Copyright 2002-2004 Apache Software Foundation
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12  * implied.
13  *
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */

17 package org.apache.avalon.excalibur.thread.impl.test;
18
19 import junit.framework.TestCase;
20 import org.apache.avalon.excalibur.thread.impl.DefaultThreadPool;
21 import org.apache.avalon.framework.logger.ConsoleLogger;
22
23 /**
24  * TestCase for DefaultThreadPool.
25  *
26  * @author <a HREF="mailto:dev@avalon.apache.org">Avalon Development Team</a>
27  */

28 public class DefaultThreadPoolTestCase
29     extends TestCase
30 {
31     public DefaultThreadPoolTestCase( final String JavaDoc name )
32     {
33         super( name );
34     }
35
36     public void testWithThreadContext()
37         throws Exception JavaDoc
38     {
39         final DefaultThreadPool pool = new DefaultThreadPool( "default", 10 );
40         pool.setDaemon( false );
41         pool.enableLogging( new ConsoleLogger( ConsoleLogger.LEVEL_INFO ) );
42         pool.execute( new DummyRunnable() );
43     }
44
45     public void testWithoutThreadContext()
46         throws Exception JavaDoc
47     {
48         final DefaultThreadPool pool = new DefaultThreadPool( "default", 10 );
49         pool.setDaemon( false );
50         pool.enableLogging( new ConsoleLogger( ConsoleLogger.LEVEL_INFO ) );
51         pool.execute( new DummyRunnable() );
52     }
53
54     private static class DummyRunnable
55         implements Runnable JavaDoc
56     {
57         public void run()
58         {
59         }
60     }
61 }
62
Popular Tags