@Before
 public void setUp() throws Exception {
   super.setUp();
   // PoolPreparedStatements enabled, should not affect the basic tests
   ds.setPoolPreparedStatements(true);
   ds.setMaxOpenPreparedStatements(2);
 }
  public void setUp() throws Exception {
    super.setUp();

    // abandoned enabled but should not affect the basic tests
    // (very high timeout)
    ds.setLogAbandoned(true);
    ds.setRemoveAbandoned(true);
    ds.setRemoveAbandonedTimeout(10000);
  }
 public void tearDown() throws Exception {
   super.tearDown();
   // nothing to do here
 }