}
@Test
public void testMultipleSentenceDefaultConfig(){
TextAnalyzer analyzer = new TextAnalyzer(openNLP,LANGUAGE);
Iterator<AnalysedText> analysedSentences = analyzer.analyse(MULTI_SENTENCES);
assertNotNull(analysedSentences);
int sentenceCount = 0;
while(analysedSentences.hasNext()){
AnalysedText analysed = analysedSentences.next();
checkSingleSentence(analysed, MULTIPLE_SENTENCE_TOKENS[sentenceCount], true, true);