Testcontainers module for the Oracle XE database.
See testcontainers.org for more information about Testcontainers.
Running Oracle XE as a stand-in for in a test:
public class SomeTest {
@Rule
public OracleContainer oracle = new OracleContainer();
@Test
public void someTestMethod() {
String url = oracle.getJdbcUrl();
... create a connection and run test as normal
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>oracle-xe</artifactId>
<version>1.4.3</version>
</dependency>
compile group: 'org.testcontainers', name: 'oracle-xe', version: '1.4.3'
See LICENSE.
Copyright (c) 2015 - 2017 Richard North and other authors.
See AUTHORS for contributors.