public void givenEqQueryOnValueWhenExecutedThenReturnCorrect()
throws EntityFinderException
{
QueryBuilder<Person> qb = qbf.newQueryBuilder( Person.class );
Person personTemplate = templateFor( Person.class );
City placeOfBirth = personTemplate.placeOfBirth().get();
Query<Person> query = qb.where(
eq( placeOfBirth.name(), "Kuala Lumpur" )
).newQuery( Network.persons() );
verifyUnorderedResults( query, "Joe Doe", "Ann Doe", "Vivian Smith" );
}