An open API service indexing awesome lists of open source software.

https://github.com/nesoy/test-container-example

🐳 Introducing Test-Container
https://github.com/nesoy/test-container-example

example testing

Last synced: 8 months ago
JSON representation

🐳 Introducing Test-Container

Awesome Lists containing this project

README

          

## TestContainer

#### Requirements
- Docker

#### Getting Started
- gradle
```gradle
testImplementation("org.testcontainers:testcontainers:1.12.0")
```

#### JUnit 4
```java
@Rule
public GenericContainer mongoDbContainer = new GenericContainer("mongo:4.0.10");
```