01: /*
02: * $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.0-beta1/module-main/src/test/java/org/apache/http/message/TestAllMessage.java $
03: * $Revision: 601000 $
04: * $Date: 2007-12-04 18:03:49 +0100 (Tue, 04 Dec 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.message;
32:
33: import junit.framework.Test;
34: import junit.framework.TestCase;
35: import junit.framework.TestSuite;
36:
37: public class TestAllMessage extends TestCase {
38:
39: public TestAllMessage(String testName) {
40: super (testName);
41: }
42:
43: public static Test suite() {
44: TestSuite suite = new TestSuite();
45: suite.addTest(TestNameValuePair.suite());
46: suite.addTest(TestHeaderGroup.suite());
47: suite.addTest(TestHeader.suite());
48: suite.addTest(TestHeaderElement.suite());
49: suite.addTest(TestBasicHeaderIterator.suite());
50: suite.addTest(TestBasicHeaderElementIterator.suite());
51: suite.addTest(TestBasicTokenIterator.suite());
52: suite.addTest(TestBasicHeaderValueParser.suite());
53: suite.addTest(TestBasicHeaderValueFormatter.suite());
54: suite.addTest(TestStatusLine.suite());
55: suite.addTest(TestRequestLine.suite());
56: suite.addTest(TestBasicLineParser.suite());
57: suite.addTest(TestBasicLineFormatter.suite());
58: suite.addTest(TestAbstractMessage.suite());
59: suite.addTest(TestBasicMessages.suite());
60:
61: return suite;
62: }
63:
64: public static void main(String args[]) {
65: String[] testCaseName = { TestAllMessage.class.getName() };
66: junit.textui.TestRunner.main(testCaseName);
67: }
68:
69: }
|