
org.testcontainers.containers.OracleContainerProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oracle-xe Show documentation
Show all versions of oracle-xe Show documentation
Isolated container management for Java code testing
package org.testcontainers.containers;
/**
* Factory for Oracle containers.
*/
public class OracleContainerProvider extends JdbcDatabaseContainerProvider {
@Override
public boolean supports(String databaseType) {
return databaseType.equals(OracleContainer.NAME);
}
@Override
public JdbcDatabaseContainer newInstance(String tag) {
return new OracleContainer(OracleContainer.IMAGE + ":" + tag);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy