private void assertTimeoutOccursOnScroll() {
FullTextQuery hibernateQuery = fts.createFullTextQuery( noMatchQuery, Clock.class );
hibernateQuery.setTimeout( 10, TimeUnit.MICROSECONDS );
try {
hibernateQuery.scroll();
fail( "timeout exception should happen" );
}
catch (QueryTimeoutException e) {
//good
}