mirror of https://github.com/apache/lucene.git
test: don't spin up embedded core if not needed, and close jetty when done
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@927107 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3d50b42f4c
commit
16cb338474
|
@ -36,6 +36,8 @@ import java.util.List;
|
|||
* @since solr 1.3
|
||||
*/
|
||||
public class TestSpellCheckResponse extends SolrExampleTestBase {
|
||||
@Override public String getSchemaFile() { return null; }
|
||||
@Override public String getSolrConfigFile() { return null; }
|
||||
|
||||
SolrServer server;
|
||||
JettySolrRunner jetty;
|
||||
|
@ -45,6 +47,7 @@ public class TestSpellCheckResponse extends SolrExampleTestBase {
|
|||
|
||||
static String field = "name";
|
||||
|
||||
@Override
|
||||
public void setUp() throws Exception {
|
||||
super.setUp();
|
||||
|
||||
|
@ -55,6 +58,12 @@ public class TestSpellCheckResponse extends SolrExampleTestBase {
|
|||
server = this.createNewSolrServer();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void tearDown() throws Exception {
|
||||
jetty.stop();
|
||||
super.tearDown();
|
||||
}
|
||||
|
||||
public void testSpellCheckResponse() throws Exception {
|
||||
SolrInputDocument doc = new SolrInputDocument();
|
||||
doc.setField("id", "111");
|
||||
|
|
Loading…
Reference in New Issue