use of com.ibatis.sqlmap.client.SqlMapSession in project pinpoint by naver.
the class SqlMapSessionIT method methodCallWithNullSqlIdShouldOnlyTraceMethodName.
@Test
public void methodCallWithNullSqlIdShouldOnlyTraceMethodName() throws Exception {
SqlMapSession sqlMapSession = new SqlMapSessionImpl(this.sqlMapClient);
super.testAndVerifyInsertWithNullSqlId(sqlMapSession);
}
use of com.ibatis.sqlmap.client.SqlMapSession in project pinpoint by naver.
the class SqlMapSessionIT method deleteShouldBeTraced.
@Test
public void deleteShouldBeTraced() throws Exception {
SqlMapSession sqlMapSession = new SqlMapSessionImpl(this.sqlMapClient);
super.testAndVerifyDelete(sqlMapSession);
}
use of com.ibatis.sqlmap.client.SqlMapSession in project pinpoint by naver.
the class SqlMapSessionIT method queryForMapShouldBeTraced.
@Test
public void queryForMapShouldBeTraced() throws Exception {
SqlMapSession sqlMapSession = new SqlMapSessionImpl(this.sqlMapClient);
super.testAndVerifyQueryForMap(sqlMapSession);
}
Aggregations