IbatisSqlMapSessionFactoryTest.java
上传用户:liangcc
上传日期:2019-05-24
资源大小:4412k
文件大小:1k
源码类别:
WEB邮件程序
开发平台:
Java
- package com.softeem.ibatis3;
- import com.ibatis.sqlmap.client.SqlMapSession;
- import junit.framework.TestCase;
- public class IbatisSqlMapSessionFactoryTest extends TestCase {
- public void testGetSqlMapClient() {
- fail("Not yet implemented");
- }
- public void testIsExistCurrentConnectionBySqlMapClient() {
- fail("Not yet implemented");
- }
- public void testColoseClient() {
- fail("Not yet implemented");
- }
- public void testGetSqlMapSession() {
- SqlMapSession session=IbatisSqlMapSessionFactory.getSqlMapSession();
- assertNotNull(session);
- }
- public void testColoseSqlMapSession() {
- fail("Not yet implemented");
- }
- public void testGetReader() {
- fail("Not yet implemented");
- }
- }