SOLR-2673: clear index in setup

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1150415 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2011-07-24 15:36:01 +00:00
parent 1b8c3f1de9
commit 7a3ef099b3
1 changed files with 6 additions and 0 deletions

View File

@ -38,6 +38,12 @@ public class TestFaceting extends SolrTestCaseJ4 {
initCore("solrconfig.xml","schema11.xml");
}
@Override
public void setUp() throws Exception {
super.setUp();
clearIndex();
}
@After
@Override
public void tearDown() throws Exception {