Skip to content

MFomichev/testcontainers-java-module-oracle-xe

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TestContainers Oracle XE Module

Testcontainers module for the Oracle XE database.

See testcontainers.org for more information about Testcontainers.

Usage example

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 information

Maven

<dependency>
    <groupId>org.testcontainers</groupId>
    <artifactId>oracle-xe</artifactId>
    <version>1.4.3</version>
</dependency>

Gradle

compile group: 'org.testcontainers', name: 'oracle-xe', version: '1.4.3'

License

See LICENSE.

Copyright

Copyright (c) 2015 - 2017 Richard North and other authors.

See AUTHORS for contributors.

About

Testcontainers module for the Oracle XE database

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 40.5%
  • Java 29.8%
  • Batchfile 29.7%