mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-27 04:19:03 +00:00
Add support for creating a container from a TestImage value
This commit improves TestImage so that an explicit image can trigger the creation of the container, with optional additional setup. This removes the need of creating additional container types for images that have multiple flavors, and to please the static method that can only create a container based on a single match. Closes gh-51082
This commit is contained in:
+1
-1
@@ -50,7 +50,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
class RedisCacheMetricsTests {
|
||||
|
||||
@Container
|
||||
static final RedisContainer redis = TestImage.container(RedisContainer.class);
|
||||
static final RedisContainer redis = TestImage.forContainer(RedisContainer.class);
|
||||
|
||||
private static final Tags TAGS = Tags.of("app", "test").and("cache", "test");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user