assertQueryEquals("term term term", null, "term term term");
assertQueryEquals("t�rm term term", new WhitespaceAnalyzer(),
"t�rm term term");
assertQueryEquals("�mlaut", new WhitespaceAnalyzer(), "�mlaut");
assertQueryEquals("\"\"", new KeywordAnalyzer(), "");
assertQueryEquals("foo:\"\"", new KeywordAnalyzer(), "foo:");
assertQueryEquals("a AND b", null, "+a +b");
assertQueryEquals("(a AND b)", null, "+a +b");
assertQueryEquals("c OR (a AND b)", null, "c (+a +b)");