requiresPort = {10000, 10001, 10010, 10011, 10012})
public void testLatinText() throws SearcherException{
indexer.index(latin1);
Execute.sleep(8000);
GroupedSearchResults sr;
sr = searcher.search(new LazyParsedQuery("xsín"), 0, 10, noGroup, 1, null, null);
assertEquals("Searching 'xsín'", 1, sr.totalGroupsEstimation());
sr = searcher.search(new LazyParsedQuery("xsin"), 0, 10, noGroup, 1, null, null);
assertEquals("Searching 'xsin'", 1, sr.totalGroupsEstimation());
sr = searcher.search(new LazyParsedQuery("xcón"), 0, 10, noGroup, 1, null, null);
assertEquals("Searching 'xcón'", 1, sr.totalGroupsEstimation());
sr = searcher.search(new LazyParsedQuery("xcon"), 0, 10, noGroup, 1, null, null);
assertEquals("Searching 'xcon'", 1, sr.totalGroupsEstimation());
}