blob: 635824d4b0b970c5be3c6faee58af6228a955a7b [file] [log] [blame]
package org.apache.log4j;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import junit.framework.Test;
public class Last extends TestCase {
public Last(String name) {
super(name);
}
public void test1() {
}
public static Test suite() {
TestSuite suite = new TestSuite();
suite.addTest(new Last("test1"));
return suite;
}
}