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
- Host: GitHub
- URL: https://github.com/nesoy/test-container-example
- Owner: NESOY
- Created: 2020-01-29T02:32:05.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-29T02:34:15.000Z (about 6 years ago)
- Last Synced: 2025-03-26T01:44:12.779Z (11 months ago)
- Topics: example, testing
- Language: Java
- Homepage:
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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");
```