Search in sources :

Example 1 with SqlMapSession

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);
}
Also used : SqlMapSession(com.ibatis.sqlmap.client.SqlMapSession) SqlMapSessionImpl(com.ibatis.sqlmap.engine.impl.SqlMapSessionImpl) Test(org.junit.Test)

Example 2 with 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);
}
Also used : SqlMapSession(com.ibatis.sqlmap.client.SqlMapSession) SqlMapSessionImpl(com.ibatis.sqlmap.engine.impl.SqlMapSessionImpl) Test(org.junit.Test)

Example 3 with 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);
}
Also used : SqlMapSession(com.ibatis.sqlmap.client.SqlMapSession) SqlMapSessionImpl(com.ibatis.sqlmap.engine.impl.SqlMapSessionImpl) Test(org.junit.Test)

Example 4 with 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);
}
Also used : SqlMapSession(com.ibatis.sqlmap.client.SqlMapSession) SqlMapSessionImpl(com.ibatis.sqlmap.engine.impl.SqlMapSessionImpl) Test(org.junit.Test)

Example 5 with 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);
}
Also used : SqlMapSession(com.ibatis.sqlmap.client.SqlMapSession) SqlMapSessionImpl(com.ibatis.sqlmap.engine.impl.SqlMapSessionImpl) Test(org.junit.Test)

Aggregations

SqlMapSession (com.ibatis.sqlmap.client.SqlMapSession)13 SqlMapSessionImpl (com.ibatis.sqlmap.engine.impl.SqlMapSessionImpl)8 Test (org.junit.Test)8