Testcontainers module for the MariaDB database.
See testcontainers.org for more information about Testcontainers.
Running MariaDB as a stand-in for in a test:
public class SomeTest {
@Rule
public MariaDBContainer mariaDB = new MariaDBContainer();
@Test
public void someTestMethod() {
String url = mariaDB.getJdbcUrl();
... create a connection and run test as normal
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>mariadb</artifactId>
<version>1.4.3</version>
</dependency>
compile group: 'org.testcontainers', name: 'mariadb', version: '1.4.3'
See LICENSE.
Copyright (c) 2015 - 2017 Richard North and other authors.
See AUTHORS for contributors.