JUnit TestCase class has had a default constructor for a long while now,
so remove pointless constructors for TestCase subclasses. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@209407 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -28,11 +28,6 @@ import junit.framework.*;
|
|||||||
*/
|
*/
|
||||||
public abstract class AbstractLogTest extends TestCase {
|
public abstract class AbstractLogTest extends TestCase {
|
||||||
|
|
||||||
public AbstractLogTest(String testName) {
|
|
||||||
super(testName);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public abstract Log getLogObject();
|
public abstract Log getLogObject();
|
||||||
|
|
||||||
public void testLoggingWithNullParameters()
|
public void testLoggingWithNullParameters()
|
||||||
|
|||||||
@@ -30,17 +30,6 @@ import junit.framework.TestSuite;
|
|||||||
public class LogTest extends AbstractLogTest
|
public class LogTest extends AbstractLogTest
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param testName
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public LogTest(String testName)
|
|
||||||
{
|
|
||||||
super(testName);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -30,17 +30,6 @@ import junit.framework.*;
|
|||||||
public class NoOpLogTest extends AbstractLogTest
|
public class NoOpLogTest extends AbstractLogTest
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param testName
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public NoOpLogTest(String testName)
|
|
||||||
{
|
|
||||||
super(testName);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -29,18 +29,6 @@ import junit.framework.*;
|
|||||||
*/
|
*/
|
||||||
public class SimpleLogTest extends AbstractLogTest
|
public class SimpleLogTest extends AbstractLogTest
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param testName
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public SimpleLogTest(String testName)
|
|
||||||
{
|
|
||||||
super(testName);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user