SmartPoolFactoryTest.java :  » Database-JDBC-Connection-Pool » SmartPool » org » smartlib » pool » core » Java Open Source

Java Open Source » Database JDBC Connection Pool » SmartPool 
SmartPool » org » smartlib » pool » core » SmartPoolFactoryTest.java
package org.smartlib.pool.core;

import java.sql.Connection;

/**
 * Created by IntelliJ IDEA.
 * User: kerneldebugger
 * Date: Oct 1, 2005
 * Time: 10:09:59 AM
 * To change this template use File | Settings | File Templates.
 */
public class SmartPoolFactoryTest extends PoolTestFixture {

    SmartPoolFactory factory;

    protected void setUp() throws Exception {
        super.setUp();
        factory = new SmartPoolFactory();
    }

    protected void tearDown() throws Exception {
        super.tearDown();
        SmartPoolFactory.shutDown();
    }

    public void testBasicFactoryLoading() throws Exception {
        Connection conn = SmartPoolFactory.getConnection();
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.