All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.infobip.testcontainers.spring.postgresql.PostgreSQLContainerWrapper Maven / Gradle / Ivy

The newest version!
package com.infobip.testcontainers.spring.postgresql;

public class PostgreSQLContainerWrapper
        extends org.testcontainers.containers.PostgreSQLContainer {

    public PostgreSQLContainerWrapper(String databaseName) {
        this(databaseName, IMAGE + ":" + DEFAULT_TAG);
    }

    public PostgreSQLContainerWrapper(String databaseName, String dockerImageName) {
        super(dockerImageName);
        withDatabaseName(databaseName);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy