Return-Path: Delivered-To: apmail-jakarta-httpclient-commits-archive@www.apache.org Received: (qmail 23526 invoked from network); 26 Feb 2005 19:33:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 26 Feb 2005 19:33:13 -0000 Received: (qmail 56547 invoked by uid 500); 26 Feb 2005 19:33:12 -0000 Mailing-List: contact httpclient-commits-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: httpclient-dev@jakarta.apache.org Delivered-To: mailing list httpclient-commits@jakarta.apache.org Received: (qmail 56534 invoked by uid 500); 26 Feb 2005 19:33:12 -0000 Delivered-To: apmail-jakarta-httpclient-cvs@jakarta.apache.org Received: (qmail 56530 invoked by uid 99); 26 Feb 2005 19:33:12 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Sat, 26 Feb 2005 11:33:12 -0800 Received: (qmail 23521 invoked by uid 65534); 26 Feb 2005 19:33:11 -0000 Message-ID: <20050226193311.23518.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Mailer: svnmailer-1.0.0-dev Date: Sat, 26 Feb 2005 19:33:11 -0000 Subject: svn commit: r155566 - in jakarta/httpclient/trunk/http-common/src/test/org/apache/http: TestAll.java util/TestAllUtil.java To: httpclient-cvs@jakarta.apache.org From: olegk@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: olegk Date: Sat Feb 26 11:33:09 2005 New Revision: 155566 URL: http://svn.apache.org/viewcvs?view=3Drev&rev=3D155566 Log: Combined test suites Added: jakarta/httpclient/trunk/http-common/src/test/org/apache/http/TestAll.j= ava (with props) jakarta/httpclient/trunk/http-common/src/test/org/apache/http/util/Test= AllUtil.java (with props) Added: jakarta/httpclient/trunk/http-common/src/test/org/apache/http/TestAl= l=2Ejava URL: http://svn.apache.org/viewcvs/jakarta/httpclient/trunk/http-common/src= /test/org/apache/http/TestAll.java?view=3Dauto&rev=3D155566 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- jakarta/httpclient/trunk/http-common/src/test/org/apache/http/TestAll.j= ava (added) +++ jakarta/httpclient/trunk/http-common/src/test/org/apache/http/TestAll.j= ava Sat Feb 26 11:33:09 2005 @@ -0,0 +1,54 @@ +/* + * $HeadURL$ + * $Revision$ + * $Date$ + * =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D + * + * Copyright 1999-2004 The Apache Software Foundation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implie= d=2E + * See the License for the specific language governing permissions and + * limitations under the License. + * =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D + * + * This software consists of voluntary contributions made by many + * individuals on behalf of the Apache Software Foundation. For more + * information on the Apache Software Foundation, please see + * . + * + */ + +package org.apache.http; + +import org.apache.http.util.TestAllUtil; + +import junit.framework.*; + +public class TestAll extends TestCase { + + public TestAll(String testName) { + super(testName); + } + + public static Test suite() { + TestSuite suite =3D new TestSuite(); + suite.addTest(TestAllUtil.suite()); + suite.addTest(TestHttpStatus.suite()); + suite.addTest(TestHttpVersion.suite()); + return suite; + } + + public static void main(String args[]) { + String[] testCaseName =3D { TestAll.class.getName() }; + junit.textui.TestRunner.main(testCaseName); + } + +} Propchange: jakarta/httpclient/trunk/http-common/src/test/org/apache/http/T= estAll.java ---------------------------------------------------------------------------= --- svn:eol-style =3D native Propchange: jakarta/httpclient/trunk/http-common/src/test/org/apache/http/T= estAll.java ---------------------------------------------------------------------------= --- svn:keywords =3D Date Author Id Revision HeadURL Propchange: jakarta/httpclient/trunk/http-common/src/test/org/apache/http/T= estAll.java ---------------------------------------------------------------------------= --- svn:mime-type =3D text/plain Added: jakarta/httpclient/trunk/http-common/src/test/org/apache/http/util/T= estAllUtil.java URL: http://svn.apache.org/viewcvs/jakarta/httpclient/trunk/http-common/src= /test/org/apache/http/util/TestAllUtil.java?view=3Dauto&rev=3D155566 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- jakarta/httpclient/trunk/http-common/src/test/org/apache/http/util/Test= AllUtil.java (added) +++ jakarta/httpclient/trunk/http-common/src/test/org/apache/http/util/Test= AllUtil.java Sat Feb 26 11:33:09 2005 @@ -0,0 +1,50 @@ +/* + * $HeadURL$ + * $Revision$ + * $Date$ + * =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D + * + * Copyright 1999-2004 The Apache Software Foundation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implie= d=2E + * See the License for the specific language governing permissions and + * limitations under the License. + * =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D + * + * This software consists of voluntary contributions made by many + * individuals on behalf of the Apache Software Foundation. For more + * information on the Apache Software Foundation, please see + * . + * + */ + +package org.apache.http.util; + +import junit.framework.*; + +public class TestAllUtil extends TestCase { + + public TestAllUtil(String testName) { + super(testName); + } + + public static Test suite() { + TestSuite suite =3D new TestSuite(); + suite.addTest(TestParameterParser.suite()); + return suite; + } + + public static void main(String args[]) { + String[] testCaseName =3D { TestAllUtil.class.getName() }; + junit.textui.TestRunner.main(testCaseName); + } + +} Propchange: jakarta/httpclient/trunk/http-common/src/test/org/apache/http/u= til/TestAllUtil.java ---------------------------------------------------------------------------= --- svn:eol-style =3D native Propchange: jakarta/httpclient/trunk/http-common/src/test/org/apache/http/u= til/TestAllUtil.java ---------------------------------------------------------------------------= --- svn:keywords =3D Date Author Id Revision HeadURL Propchange: jakarta/httpclient/trunk/http-common/src/test/org/apache/http/u= til/TestAllUtil.java ---------------------------------------------------------------------------= --- svn:mime-type =3D text/plain