Match match = getMatch("POS1", "POS2", true);
final Polish polish = new Polish();
match.setSynthesizer(polish.getSynthesizer());
match.setToken(getAnalyzedTokenReadings("inflectedform11", "POS1", "Lemma1"));
//getting empty strings, which is what we want
assertEquals("[]", Arrays.toString(match.toFinalString(polish)));
// contrast with a speller = false!
match = getMatch("POS1", "POS2", false);
match.setSynthesizer(polish.getSynthesizer());
match.setToken(getAnalyzedTokenReadings("inflectedform11", "POS1", "Lemma1"));