From 037499be3099510452f81c744c67c2426d1dde07 Mon Sep 17 00:00:00 2001 From: Simon Kitching Date: Mon, 27 Feb 2006 02:58:24 +0000 Subject: [PATCH] Add comments, clean up imports. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@381236 13f79535-47bb-0310-9956-ffa450edef68 --- src/test/org/apache/commons/logging/AbstractLogTest.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/test/org/apache/commons/logging/AbstractLogTest.java b/src/test/org/apache/commons/logging/AbstractLogTest.java index 3ad1cc2..1ce0a26 100644 --- a/src/test/org/apache/commons/logging/AbstractLogTest.java +++ b/src/test/org/apache/commons/logging/AbstractLogTest.java @@ -17,14 +17,16 @@ package org.apache.commons.logging; -import junit.framework.*; +import junit.framework.TestCase; /** - * + * Generic tests that can be applied to any log adapter by + * subclassing this class and defining method getLogObject + * appropriately. + * * @author Sean C. Sullivan * @version $Revision$ - * */ public abstract class AbstractLogTest extends TestCase {