GitHub / java-deepdive / how-to-test-in-java
[인프런] 더 자바, 애플리케이션을 테스트하는 다양한 방법
JSON API: http://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/java-deepdive%2Fhow-to-test-in-java
PURL: pkg:github/java-deepdive/how-to-test-in-java
Stars: 0
Forks: 0
Open issues: 0
License: None
Language: Java
Size: 72.3 KB
Dependencies parsed at:
14
Created at: almost 4 years ago
Updated at: about 3 years ago
Pushed at: over 3 years ago
Last synced at: about 2 years ago
Topics: assertj, junit5, testcontainer
chapter1/build.gradle
maven
- org.projectlombok:lombok * compileOnly
- org.springframework.boot:spring-boot-starter-data-jpa * implementation
- org.springframework.boot:spring-boot-starter-validation * implementation
- org.springframework.boot:spring-boot-starter-web * implementation
- com.h2database:h2 * runtimeOnly
- org.springframework.boot:spring-boot-starter-test * testImplementation
chapter3/build.gradle
maven
- org.projectlombok:lombok * compileOnly
- org.springframework.boot:spring-boot-starter-data-jpa * implementation
- org.springframework.boot:spring-boot-starter-web * implementation
- com.h2database:h2 * runtimeOnly
- org.postgresql:postgresql * runtimeOnly
- org.springframework.boot:spring-boot-starter-test * testImplementation
- org.testcontainers:junit-jupiter * testImplementation
- org.testcontainers:postgresql * testImplementation