public void QueryElement() throws Exception{
Query query1 = serializer.toQuery(author.like("Michael"), metadata);
Query query2 = serializer.toQuery(text.like("Text"), metadata);
BooleanExpression query = BooleanExpression.anyOf(
new QueryElement(query1),
new QueryElement(query2)
);
testQuery(query, "author:michael text:text", 1);
}