Пример #1
0
 /*
  * Setup a new Connection before each test since its closed state will need to be checked
  * afterwards and there is no Connection.open().
  */
 @Before
 public void setupConnection() throws SQLException {
   dataSource.reset();
   connection = createMockConnection();
   connectionTwo = createMockConnection();
   dataSource.addConnection(connectionTwo);
   dataSource.addConnection(connection);
 }