mirror of
https://github.com/apache/httpcomponents-client.git
synced 2025-02-17 07:26:47 +00:00
Renamed some test case classes
git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@527496 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
25afa68faa
commit
31d1001b23
@ -44,8 +44,8 @@ public static Test suite() {
|
||||
TestSuite suite = new TestSuite();
|
||||
|
||||
suite.addTest(TestRFC2617Scheme.suite());
|
||||
suite.addTest(TestBasicAuth.suite());
|
||||
suite.addTest(TestDigestAuth.suite());
|
||||
suite.addTest(TestBasicScheme.suite());
|
||||
suite.addTest(TestDigestScheme.suite());
|
||||
|
||||
return suite;
|
||||
}
|
||||
|
@ -53,23 +53,23 @@
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestBasicAuth extends TestCase {
|
||||
public class TestBasicScheme extends TestCase {
|
||||
|
||||
// ------------------------------------------------------------ Constructor
|
||||
public TestBasicAuth(final String testName) throws IOException {
|
||||
public TestBasicScheme(final String testName) throws IOException {
|
||||
super(testName);
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------- Main
|
||||
public static void main(String args[]) {
|
||||
String[] testCaseName = { TestBasicAuth.class.getName() };
|
||||
String[] testCaseName = { TestBasicScheme.class.getName() };
|
||||
junit.textui.TestRunner.main(testCaseName);
|
||||
}
|
||||
|
||||
// ------------------------------------------------------- TestCase Methods
|
||||
|
||||
public static Test suite() {
|
||||
TestSuite suite = new TestSuite(TestBasicAuth.class);
|
||||
TestSuite suite = new TestSuite(TestBasicScheme.class);
|
||||
return suite;
|
||||
}
|
||||
|
@ -55,23 +55,23 @@
|
||||
* @author <a href="mailto:jsdever@apache.org">Jeff Dever</a>
|
||||
* @author <a href="mailto:oleg@ural.ru">Oleg Kalnichevski</a>
|
||||
*/
|
||||
public class TestDigestAuth extends TestCase {
|
||||
public class TestDigestScheme extends TestCase {
|
||||
|
||||
// ------------------------------------------------------------ Constructor
|
||||
public TestDigestAuth(String testName) {
|
||||
public TestDigestScheme(String testName) {
|
||||
super(testName);
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------- Main
|
||||
public static void main(String args[]) {
|
||||
String[] testCaseName = { TestDigestAuth.class.getName() };
|
||||
String[] testCaseName = { TestDigestScheme.class.getName() };
|
||||
junit.textui.TestRunner.main(testCaseName);
|
||||
}
|
||||
|
||||
// ------------------------------------------------------- TestCase Methods
|
||||
|
||||
public static Test suite() {
|
||||
return new TestSuite(TestDigestAuth.class);
|
||||
return new TestSuite(TestDigestScheme.class);
|
||||
}
|
||||
|
||||
public void testDigestAuthenticationWithNoRealm() throws Exception {
|
Loading…
x
Reference in New Issue
Block a user