IbatisSqlMapSessionFactoryTest.java
上传用户:liangcc
上传日期:2019-05-24
资源大小:4412k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

Java

  1. package com.softeem.ibatis3;
  2. import com.ibatis.sqlmap.client.SqlMapSession;
  3. import junit.framework.TestCase;
  4. public class IbatisSqlMapSessionFactoryTest extends TestCase {
  5. public void testGetSqlMapClient() {
  6. fail("Not yet implemented");
  7. }
  8. public void testIsExistCurrentConnectionBySqlMapClient() {
  9. fail("Not yet implemented");
  10. }
  11. public void testColoseClient() {
  12. fail("Not yet implemented");
  13. }
  14. public void testGetSqlMapSession() {
  15. SqlMapSession session=IbatisSqlMapSessionFactory.getSqlMapSession();
  16. assertNotNull(session);
  17. }
  18. public void testColoseSqlMapSession() {
  19. fail("Not yet implemented");
  20. }
  21. public void testGetReader() {
  22. fail("Not yet implemented");
  23. }
  24. }