@Test
 public void updateShouldBeTraced() throws Exception {
   SqlMapClient sqlMapClient = new SqlMapClientImpl(super.mockSqlMapExecutorDelegate);
   super.testAndVerifyUpdate(sqlMapClient);
 }
 @Test
 public void queryForPaginagedListShouldBeTraced() throws Exception {
   SqlMapClient sqlMapClient = new SqlMapClientImpl(super.mockSqlMapExecutorDelegate);
   super.testAndVerifyQueryForPaginatedList(sqlMapClient);
 }
 @Test
 public void methodCallWithNullSqlIdShouldOnlyTraceMethodName() throws Exception {
   SqlMapClient sqlMapClient = new SqlMapClientImpl(super.mockSqlMapExecutorDelegate);
   super.testAndVerifyInsertWithNullSqlId(sqlMapClient);
 }