01: package org.smartlib.pool.core;
02:
03: import java.sql.Connection;
04:
05: /**
06: * Created by IntelliJ IDEA.
07: * User: kerneldebugger
08: * Date: Oct 1, 2005
09: * Time: 10:09:59 AM
10: * To change this template use File | Settings | File Templates.
11: */
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: }
|