assertEquals(HunspellNoSuggestionRule.RULE_ID, matches.get(0).getRule().getId());
final PatternRule ruleWithSuggestion = new PatternRule("TEST_ID", new GermanyGerman(),
Collections.<Element>emptyList(), "description",
"Meinten Sie <suggestion>Tibbfehla</suggestion>?", null);
langTool.addRule(ruleWithSuggestion);
final List<RuleMatch> matches2 = langTool.check("Das ist ein Tibbfehla.");
assertEquals(0, matches2.size()); // no error anymore, as this is a suggestion
langTool.disableRule("TEST_ID");
final List<RuleMatch> matches3 = langTool.check("Das ist ein Tibbfehla.");