我需要使用 testcontainer.properties 的“无限一次启动策略示例”。如何使用属性配置 IndefiniteWaitOneShotStartupCheckStrategy?
实际上,我想通过属性配置这三个示例,但我不知道如何执行此操作:
container.withStartupCheckStrategy(
new IndefiniteWaitOneShotStartupCheckStrategy()
);
container.waitingFor(
Wait.forLogMessage("Completed: ALTER PLUGGABLE DATABASE XEPDB1 SAVE STATE", 1)
);
container.withStartupTimeoutSeconds(30);