01: /*
02: * $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.0-beta1/module-main/src/test/java/org/apache/http/TestHttpExceptions.java $
03: * $Revision: 496069 $
04: * $Date: 2007-01-14 13:03:05 +0100 (Sun, 14 Jan 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;
32:
33: import junit.framework.*;
34:
35: /**
36: * Simple tests for various HTTP exception classes.
37: *
38: * @author <a href="mailto:oleg at ural.ru">Oleg Kalnichevski</a>
39: *
40: * @version $Revision: 496069 $
41: */
42: public class TestHttpExceptions extends TestCase {
43:
44: // ------------------------------------------------------------ Constructor
45: public TestHttpExceptions(String testName) {
46: super (testName);
47: }
48:
49: // ------------------------------------------------------------------- Main
50: public static void main(String args[]) {
51: String[] testCaseName = { TestHttpExceptions.class.getName() };
52: junit.textui.TestRunner.main(testCaseName);
53: }
54:
55: // ------------------------------------------------------- TestCase Methods
56:
57: public static Test suite() {
58: return new TestSuite(TestHttpExceptions.class);
59: }
60:
61: public void testConstructor() {
62: Throwable cause = new Exception();
63: new HttpException();
64: new HttpException("Oppsie");
65: new HttpException("Oppsie", cause);
66: new ProtocolException();
67: new ProtocolException("Oppsie");
68: new ProtocolException("Oppsie", cause);
69: new NoHttpResponseException("Oppsie");
70: new ConnectionClosedException("Oppsie");
71: new MethodNotSupportedException("Oppsie");
72: new MethodNotSupportedException("Oppsie", cause);
73: new UnsupportedHttpVersionException();
74: new UnsupportedHttpVersionException("Oppsie");
75: }
76:
77: }
|