use of com.ibatis.sqlmap.engine.impl.SqlMapClientImpl in project pinpoint by naver.
the class SqlMapClientIT method queryForPaginagedListShouldBeTraced.
@Test
public void queryForPaginagedListShouldBeTraced() throws Exception {
SqlMapClient sqlMapClient = new SqlMapClientImpl(super.mockSqlMapExecutorDelegate);
super.testAndVerifyQueryForPaginatedList(sqlMapClient);
}
use of com.ibatis.sqlmap.engine.impl.SqlMapClientImpl in project pinpoint by naver.
the class SqlMapClientIT method insertShouldBeTraced.
@Test
public void insertShouldBeTraced() throws Exception {
SqlMapClient sqlMapClient = new SqlMapClientImpl(super.mockSqlMapExecutorDelegate);
super.testAndVerifyInsert(sqlMapClient);
}
use of com.ibatis.sqlmap.engine.impl.SqlMapClientImpl in project pinpoint by naver.
the class SqlMapClientIT method queryForListShouldBeTraced.
@Test
public void queryForListShouldBeTraced() throws Exception {
SqlMapClient sqlMapClient = new SqlMapClientImpl(super.mockSqlMapExecutorDelegate);
super.testAndVerifyQueryForList(sqlMapClient);
}
use of com.ibatis.sqlmap.engine.impl.SqlMapClientImpl in project pinpoint by naver.
the class SqlMapClientIT method queryForMapShouldBeTraced.
@Test
public void queryForMapShouldBeTraced() throws Exception {
SqlMapClient sqlMapClient = new SqlMapClientImpl(super.mockSqlMapExecutorDelegate);
super.testAndVerifyQueryForMap(sqlMapClient);
}
use of com.ibatis.sqlmap.engine.impl.SqlMapClientImpl in project pinpoint by naver.
the class SqlMapClientIT method queryForObjectShouldBeTraced.
@Test
public void queryForObjectShouldBeTraced() throws Exception {
SqlMapClient sqlMapClient = new SqlMapClientImpl(super.mockSqlMapExecutorDelegate);
super.testAndVerifyQueryForObject(sqlMapClient);
}
Aggregations