
org.testcontainers.junit.jupiter.Container Maven / Gradle / Ivy
package org.testcontainers.junit.jupiter;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* The {@code @Container} annotation is used in conjunction with the {@link Testcontainers} annotation
* to mark containers that should be managed by the Testcontainers extension.
*
* @see Testcontainers
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Container {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy