public void testQueryWithRowHandlerWithParameter() throws SQLException {
   RowHandler rowHandler = new TestRowHandler();
   TestSqlMapClientTemplate template = new TestSqlMapClientTemplate();
   template.executor.queryWithRowHandler("myStatement", "myParameter", rowHandler);
   template.executorControl.setVoidCallable(1);
   template.executorControl.replay();
   template.queryWithRowHandler("myStatement", "myParameter", rowHandler);
   template.executorControl.verify();
 }