SpringBoot 통합테스트를 할 시 DB로 Docker + TestContainer 이용
...
testImplementation("org.springframework.boot:spring-boot-starter-test") {
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
exclude( module = "mockito-core")
}
testImplementation("org.springframework.security:spring-security-test")
testImplementation("org.testcontainers:junit-jupiter")
testImplementation("org.testcontainers:mariadb")