<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>1.16.0</version>
<scope>test</scope>
</dependency>
import org.junit.jupiter.api.Test;
import org.testcontainers.containers.MySQLContainer;
public class MyTestClass {
@Test
public void testContainer() {
try (MySQLContainer mysql = new MySQLContainer()) {
mysql.start();
}
}
}