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

com.playtika.testcontainer.common.spring.DockerPresenceMarker Maven / Gradle / Ivy

The newest version!
package com.playtika.testcontainer.common.spring;

import lombok.Value;

@Value
public class DockerPresenceMarker {

    boolean dockerPresent;

    public DockerPresenceMarker(boolean dockerPresent) {
        if(!dockerPresent){
            throw new DockerNotPresentException("Docker must be present in order for testcontainers to work properly!");
        }
        this.dockerPresent = dockerPresent;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy