new String[] {"thi", "is", "lot", "of", "word", "with", "lot", "of", "strang", "charact", "in", "fact", "it", "ha", "everi", "singl", "on", "of", "them", "in", "here", "bn", "test", "test", "test", "test", "test", "test", "test", "test", "test", "test", "test", "what"}},
};
@Test
public void basic() throws Exception {
Analyzer analyzer = new TweetAnalyzer(Version.LUCENE_43);
for (int i = 0; i < examples.length; i++) {
verify((String[]) examples[i][1], parseKeywords(analyzer, (String) examples[i][0]));
}
}