1 package org.smartlib.pool.core; 2 3 import java.sql.Connection ; 4 5 12 public class SmartPoolFactoryTest extends PoolTestFixture { 13 14 SmartPoolFactory factory; 15 16 protected void setUp() throws Exception { 17 super.setUp(); 18 factory = new SmartPoolFactory(); 19 } 20 21 protected void tearDown() throws Exception { 22 super.tearDown(); 23 SmartPoolFactory.shutDown(); 24 } 25 26 public void testBasicFactoryLoading() throws Exception { 27 Connection conn = SmartPoolFactory.getConnection(); 28 } 29 30 } 31 | Popular Tags |