/* LanguageTool, a natural language style checker * Copyright (C) 2012 Marcin Miłkowski * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 * USA */ package org.languagetool.rules.en; import static org.junit.Assert.assertEquals; import java.io.IOException; import org.junit.Test; import org.languagetool.JLanguageTool; import org.languagetool.Language; import org.languagetool.TestTools; import org.languagetool.language.SouthAfricanEnglish; import org.languagetool.rules.Rule; import org.languagetool.rules.RuleMatch; public class MorfologikSouthAfricanSpellerRuleTest extends AbstractEnglishSpellerRuleTest { @Test public void testSuggestions() throws IOException { Language language = new SouthAfricanEnglish(); Rule rule = new MorfologikSouthAfricanSpellerRule(TestTools.getMessages("en"), language); super.testNonVariantSpecificSuggestions(rule, language); } @Test public void testMorfologikSpeller() throws IOException { SouthAfricanEnglish language = new SouthAfricanEnglish(); MorfologikSouthAfricanSpellerRule rule = new MorfologikSouthAfricanSpellerRule (TestTools.getMessages("en"), language); JLanguageTool langTool = new JLanguageTool(language); // correct sentences: assertEquals(0, rule.match(langTool.getAnalyzedSentence("This is an example: we get behaviour as a dictionary word.")).length); assertEquals(0, rule.match(langTool.getAnalyzedSentence("Why don't we speak today.")).length); //with doesn't assertEquals(0, rule.match(langTool.getAnalyzedSentence("He doesn't know what to do.")).length); assertEquals(0, rule.match(langTool.getAnalyzedSentence(",")).length); assertEquals(0, rule.match(langTool.getAnalyzedSentence("123454")).length); //South African dict: assertEquals(0, rule.match(langTool.getAnalyzedSentence("Amanzimnyama")).length); //incorrect sentences: RuleMatch[] matches1 = rule.match(langTool.getAnalyzedSentence("behavior")); // check match positions: assertEquals(1, matches1.length); assertEquals(0, matches1[0].getFromPos()); assertEquals(8, matches1[0].getToPos()); assertEquals("behaviour", matches1[0].getSuggestedReplacements().get(0)); assertEquals(1, rule.match(langTool.getAnalyzedSentence("aõh")).length); assertEquals(0, rule.match(langTool.getAnalyzedSentence("a")).length); //based on replacement pairs: RuleMatch[] matches2 = rule.match(langTool.getAnalyzedSentence("He teached us.")); // check match positions: assertEquals(1, matches2.length); assertEquals(3, matches2[0].getFromPos()); assertEquals(10, matches2[0].getToPos()); assertEquals("taught", matches2[0].getSuggestedReplacements().get(0)); } }