org.testcontainers.lifecycle.Startable Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of testcontainers Show documentation
                Show all versions of testcontainers Show documentation
Isolated container management for Java code testing
                
            package org.testcontainers.lifecycle;
import java.util.Collections;
import java.util.Set;
public interface Startable extends AutoCloseable {
    default Set getDependencies() {
        return Collections.emptySet();
    }
    void start();
    void stop();
    @Override
    default void close() {
        stop();
    }
}
     © 2015 - 2025 Weber Informatics LLC | Privacy Policy