use of com.ibatis.sqlmap.client.SqlMapSession in project pinpoint by naver.
the class SqlMapSessionIT method queryForListShouldBeTraced.
@Test
public void queryForListShouldBeTraced() throws Exception {
SqlMapSession sqlMapSession = new SqlMapSessionImpl(this.sqlMapClient);
super.testAndVerifyQueryForList(sqlMapSession);
}
use of com.ibatis.sqlmap.client.SqlMapSession in project pinpoint by naver.
the class SqlMapSessionIT method queryForObjectShouldBeTraced.
@Test
public void queryForObjectShouldBeTraced() throws Exception {
SqlMapSession sqlMapSession = new SqlMapSessionImpl(this.sqlMapClient);
super.testAndVerifyQueryForObject(sqlMapSession);
}
use of com.ibatis.sqlmap.client.SqlMapSession in project pinpoint by naver.
the class SqlMapSessionIT method insertShouldBeTraced.
@Test
public void insertShouldBeTraced() throws Exception {
SqlMapSession sqlMapSession = new SqlMapSessionImpl(this.sqlMapClient);
super.testAndVerifyInsert(sqlMapSession);
}
use of com.ibatis.sqlmap.client.SqlMapSession in project pinpoint by naver.
the class SqlMapSessionIT method updateShouldBeTraced.
@Test
public void updateShouldBeTraced() throws Exception {
SqlMapSession sqlMapSession = new SqlMapSessionImpl(this.sqlMapClient);
super.testAndVerifyUpdate(sqlMapSession);
}
use of com.ibatis.sqlmap.client.SqlMapSession in project pinpoint by naver.
the class SqlMapSessionIT method queryForPaginagedListShouldBeTraced.
@Test
public void queryForPaginagedListShouldBeTraced() throws Exception {
SqlMapSession sqlMapSession = new SqlMapSessionImpl(this.sqlMapClient);
super.testAndVerifyQueryForPaginatedList(sqlMapSession);
}
Aggregations