/**
* Just test that the classpath contains all needed classes.
*/
@Test
public void testGqlExt() throws Exception {
GqlExtDynamic gqlExt = new GqlExtDynamic( gae.getDatastoreService());
PreparedGql pq = gqlExt.prepare( "SELECT cos(:1*3.1415/180) as 'cos' FROM dual");
for (Entity ent : pq.executeQuery( 30 )) {
log.debug("testGqlExt(): " + ent.getProperty("cos"));
}
}