01: /*
02: * $HeadURL:https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpcore/trunk/module-nio/src/test/java/org/apache/http/impl/nio/TestAllImpl.java $
03: * $Revision:503277 $
04: * $Date:2007-02-03 18:22:45 +0000 (Sat, 03 Feb 2007) $
05: * ====================================================================
06: * Licensed to the Apache Software Foundation (ASF) under one
07: * or more contributor license agreements. See the NOTICE file
08: * distributed with this work for additional information
09: * regarding copyright ownership. The ASF licenses this file
10: * to you under the Apache License, Version 2.0 (the
11: * "License"); you may not use this file except in compliance
12: * with the License. You may obtain a copy of the License at
13: *
14: * http://www.apache.org/licenses/LICENSE-2.0
15: *
16: * Unless required by applicable law or agreed to in writing,
17: * software distributed under the License is distributed on an
18: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19: * KIND, either express or implied. See the License for the
20: * specific language governing permissions and limitations
21: * under the License.
22: * ====================================================================
23: *
24: * This software consists of voluntary contributions made by many
25: * individuals on behalf of the Apache Software Foundation. For more
26: * information on the Apache Software Foundation, please see
27: * <http://www.apache.org/>.
28: *
29: */
30:
31: package org.apache.http.impl.nio;
32:
33: import org.apache.http.impl.nio.codecs.TestAllImplCodecs;
34: import org.apache.http.impl.nio.reactor.TestAllImplReactor;
35:
36: import junit.framework.*;
37:
38: public class TestAllImpl extends TestCase {
39:
40: public TestAllImpl(String testName) {
41: super (testName);
42: }
43:
44: public static Test suite() {
45: TestSuite suite = new TestSuite();
46: suite.addTest(TestAllImplReactor.suite());
47: suite.addTest(TestAllImplCodecs.suite());
48: return suite;
49: }
50:
51: public static void main(String args[]) {
52: String[] testCaseName = { TestAllImpl.class.getName() };
53: junit.textui.TestRunner.main(testCaseName);
54: }
55:
56: }
|