I need use "Indefinite one shot startup strategy example" by testcontainer.properties. How could I configure IndefiniteWaitOneShotStartupCheckStrategy using properties?
For real, I'd like to configure this three examples by properties, but I don't know how to do this:
container.withStartupCheckStrategy(
new IndefiniteWaitOneShotStartupCheckStrategy()
);
container.waitingFor(
Wait.forLogMessage("Completed: ALTER PLUGGABLE DATABASE XEPDB1 SAVE STATE", 1)
);
container.withStartupTimeoutSeconds(30);