summaryrefslogtreecommitdiff
path: root/spellchecker/test/SpellCorrectorTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'spellchecker/test/SpellCorrectorTest.java')
-rw-r--r--spellchecker/test/SpellCorrectorTest.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/spellchecker/test/SpellCorrectorTest.java b/spellchecker/test/SpellCorrectorTest.java
index d658914..a826212 100644
--- a/spellchecker/test/SpellCorrectorTest.java
+++ b/spellchecker/test/SpellCorrectorTest.java
@@ -23,9 +23,14 @@ public class SpellCorrectorTest {
private void checkGetCandidateWords(CorpusReader cr, String word,
Set<String> expResult)
throws IOException {
+ // ignore unchanged word
+ expResult.remove(word);
+
System.out.println("getCandidateWords(" + word + ")");
SpellCorrector instance = new SpellCorrector(cr, cmr);
Set<String> result = instance.getCandidateWords(word).keySet();
+
+ assertFalse("Should not contain word " + word, result.contains(word));
// quick check: are the results of the same size?
assertEquals(expResult.size(), result.size());
// verbose test: are all letters as expected?