To run most of the tests you need to have a database (for example Postgres).
The connection configuration (url, password etc.) is configured as JVM property or in {@link #createTest(I_Info,Map)} and{@link #setUpDbPool(I_Info)}
231232233234235236237238239
if (conn != null && pool != null) pool.release(conn); } log.info("setUp: Instantiating"); this.agent = new ReplicationAgent(); this.agent.init(this.readerInfo, this.writerInfo); log.info("setUp: terminated"); }
336337338339340341342343344345346
if (conn != null && pool != null) pool.release(conn); } log.info("setUp: Instantiating"); this.agent = new ReplicationAgent(); this.agent.init(this.readerInfo, this.writerInfo); this.interceptor.clear(); this.agent.registerForUpdates(this.interceptor); log.info("setUp: terminated"); }