test code with mysql & redis testcontainers

This commit is contained in:
jinho jeong
2022-04-27 15:18:44 +09:00
parent e468379dd0
commit 6d13be0c9e
4 changed files with 64 additions and 9 deletions

View File

@@ -36,7 +36,10 @@ dependencies {
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok'
testImplementation "org.testcontainers:junit-jupiter:1.16.3"
testImplementation "org.testcontainers:testcontainers:1.15.3"
testImplementation "org.testcontainers:junit-jupiter:1.16.3"
testImplementation "org.testcontainers:mysql:1.15.3"
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}