org.testcontainers.images.builder.dockerfile.traits.DockerfileBuilderTrait 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
The newest version!
package org.testcontainers.images.builder.dockerfile.traits;
import org.testcontainers.images.builder.dockerfile.statement.Statement;
import java.util.List;
public interface DockerfileBuilderTrait> {
List getStatements();
default SELF withStatement(Statement statement) {
getStatements().add(statement);
return (SELF) this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy