Best Testcontainers-java code snippet using org.testcontainers.jdbc.ContainerDatabaseDriver.killContainers
Source:DatabaseDriverShutdownTest.java
...16 */17public class DatabaseDriverShutdownTest {18 @AfterClass19 public static void testCleanup() {20 ContainerDatabaseDriver.killContainers();21 }22 @Test23 public void shouldStopContainerWhenAllConnectionsClosed() throws SQLException {24 final String jdbcUrl = "jdbc:tc:postgresql:9.6.8://hostname/databasename";25 getConnectionAndClose(jdbcUrl);26 JdbcDatabaseContainer<?> container = ContainerDatabaseDriver.getContainer(jdbcUrl);27 assertNull("Database container instance is null as expected", container);28 }29 @Test30 public void shouldNotStopDaemonContainerWhenAllConnectionsClosed() throws SQLException {31 final String jdbcUrl = "jdbc:tc:postgresql:9.6.8://hostname/databasename?TC_DAEMON=true";32 getConnectionAndClose(jdbcUrl);33 JdbcDatabaseContainer<?> container = ContainerDatabaseDriver.getContainer(jdbcUrl);34 assertNotNull("Database container instance is not null as expected", container);...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!