/*
* Test method for
* 'org.apache.lucene.gdata.search.StandardGdataSearcher.close()'
*/
public void testClose() throws IOException {
StandardGdataSearcher s = new StandardGdataSearcher(new TestRefcounter(
new IndexSearcher(this.dir)));
s.close();
try {
s.search(null, 0, 0,this.feedId);
fail("searcher is closed");
} catch (IllegalStateException e) {
}
}