How to use killContainers method of org.testcontainers.jdbc.ContainerDatabaseDriver class

Best Testcontainers-java code snippet using org.testcontainers.jdbc.ContainerDatabaseDriver.killContainers

Source:DatabaseDriverShutdownTest.java Github

copy

Full Screen

...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);...

Full Screen

Full Screen

Automation Testing Tutorials

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.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Testcontainers-java automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful