}
public void testXQConnectionExequtePreparedQuery() {
try {
XQConnection connection = new XQConnection();
connection.prepareAndExecuteQuery( TEST_QUERY, ListUtils.EMPTY_LIST );
fail( "Should throw UnsupportedOperationException" );
} catch ( UnsupportedOperationException e ) {
// valid
} catch ( Exception e ) {
fail( "Should throw UnsupportedOperationException" );