[jboss-cvs] apache/commons-logging/src/test/org/apache/commons/logging ...

Scott Stark scott.stark at jboss.com
Fri Feb 9 02:41:51 EST 2007


  User: starksm 
  Date: 07/02/09 02:41:51

  Modified:    commons-logging/src/test/org/apache/commons/logging  Tag:
                        JBoss_Apache_Common_Logging_Branch_1_1
                        AbstractLogTest.java
  Log:
  Add the missing ctors
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.2.4.1   +12 -2     apache/commons-logging/src/test/org/apache/commons/logging/AbstractLogTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AbstractLogTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/apache/commons-logging/src/test/org/apache/commons/logging/AbstractLogTest.java,v
  retrieving revision 1.2
  retrieving revision 1.2.4.1
  diff -u -b -r1.2 -r1.2.4.1
  --- AbstractLogTest.java	9 Feb 2007 06:57:17 -0000	1.2
  +++ AbstractLogTest.java	9 Feb 2007 07:41:51 -0000	1.2.4.1
  @@ -26,12 +26,22 @@
     * appropriately.
     * 
     * @author Sean C. Sullivan
  -  * @version $Revision: 1.2 $
  +  * @version $Revision: 1.2.4.1 $
     */
   public abstract class AbstractLogTest extends TestCase {
   
       public abstract Log getLogObject();
   
  +	public AbstractLogTest()
  +   {
  +      super();
  +   }
  +
  +   public AbstractLogTest(String name)
  +   {
  +      super(name);
  +   }
  +
   	public void testLoggingWithNullParameters()
   	{
   		Log log = this.getLogObject();
  
  
  



More information about the jboss-cvs-commits mailing list