public class QuestionWhitespaceRuleTest extends TestCase {
public final void testRule() throws IOException {
QuestionWhitespaceRule rule = new QuestionWhitespaceRule(TestTools.getEnglishMessages());
RuleMatch[] matches;
JLanguageTool langTool = new JLanguageTool(new French());
// correct sentences:
assertEquals(0, rule.match(langTool.getAnalyzedSentence("C'est vrai !")).length);
assertEquals(0, rule.match(langTool.getAnalyzedSentence("Qu'est ce que c'est ?")).length);
assertEquals(0, rule.match(langTool.getAnalyzedSentence("L'enjeu de ce livre est donc triple : philosophique")).length);