@Test
public void script18()
throws EntityFinderException
{
Nameable nameable = templateFor( Nameable.class );
final Query<Nameable> query = unitOfWork.newQuery( this.module
.newQueryBuilder( Nameable.class )
.where( queries.get( "script18" ) ) );
query.orderBy( orderBy( nameable.name() ) );
System.out.println( "*** script18: " + query );
verifyOrderedResults( query, "Ann Doe", "Cars", "Cooking", "Gaming", "Jack Doe", "Joe Doe", "Kuala Lumpur",
"Penang", "Programming" );
}