make TestReplicationHandler just extend TestCase instead

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/branches/newtrunk@925607 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2010-03-20 13:37:28 +00:00
parent 0ab629f421
commit 85873481fe
1 changed files with 3 additions and 9 deletions

View File

@ -38,20 +38,15 @@ import org.apache.solr.util.AbstractSolrTestCase;
import java.io.*;
import java.net.URL;
import junit.framework.TestCase;
/**
* Test for ReplicationHandler
*
* @version $Id$
* @since 1.4
*/
public class TestReplicationHandler extends AbstractSolrTestCase {
public String getSchemaFile() {
return null;
}
public String getSolrConfigFile() {
return null;
}
public class TestReplicationHandler extends TestCase {
private static final String CONF_DIR = "." + File.separator + "solr" + File.separator + "conf" + File.separator;
@ -79,7 +74,6 @@ public class TestReplicationHandler extends AbstractSolrTestCase {
@Override
public void tearDown() throws Exception {
super.preTearDown();
masterJetty.stop();
slaveJetty.stop();
master.tearDown();