From 9d0c1a74220ea1406ba6fa04342bb0f004364e7f Mon Sep 17 00:00:00 2001 From: Simon Kitching Date: Fri, 8 Jul 2005 07:08:54 +0000 Subject: [PATCH] Rename LogTest to LogTestCase for consistency. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@209713 13f79535-47bb-0310-9956-ffa450edef68 --- .../logging/{LogTest.java => LogTestCase.java} | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) rename src/test/org/apache/commons/logging/{LogTest.java => LogTestCase.java} (75%) diff --git a/src/test/org/apache/commons/logging/LogTest.java b/src/test/org/apache/commons/logging/LogTestCase.java similarity index 75% rename from src/test/org/apache/commons/logging/LogTest.java rename to src/test/org/apache/commons/logging/LogTestCase.java index 2d37bae..f917ee3 100644 --- a/src/test/org/apache/commons/logging/LogTest.java +++ b/src/test/org/apache/commons/logging/LogTestCase.java @@ -1,5 +1,5 @@ /* - * Copyright 2001-2004 The Apache Software Foundation. + * Copyright 2001-2005 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. @@ -27,7 +27,7 @@ import junit.framework.TestSuite; * * */ -public class LogTest extends AbstractLogTest +public class LogTestCase extends AbstractLogTest { /** @@ -45,16 +45,7 @@ public class LogTest extends AbstractLogTest public static void main(String[] args) { - String[] testCaseName = { LogTest.class.getName() }; + String[] testCaseName = { LogTestCase.class.getName() }; junit.textui.TestRunner.main(testCaseName); } - - public static Test suite() { - TestSuite suite = new TestSuite(); - - suite.addTestSuite(LogTest.class); - - return suite; - } - }