Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 899 Bytes

File metadata and controls

37 lines (26 loc) · 899 Bytes

테스트 실행 및 리포트 확인

빠른 시작

# 테스트 실행
./gradlew test

# 리포트 요약 확인
./scripts/show-test-report.sh

# 리포트 자동으로 브라우저에서 열기
./scripts/show-test-report.sh --open

실무 워크플로우

# 테스트 실행 + 리포트 확인 (한 줄)
./gradlew test && ./scripts/show-test-report.sh

# 실패한 테스트 상세 확인 (자동으로 브라우저 열기)
./gradlew test && ./scripts/show-test-report.sh --open

특정 테스트만 실행

# 특정 클래스의 테스트만 실행
./gradlew test --tests "com.bandchu.api.domain.member.model.MemberTest"

# 특정 패키지의 테스트만 실행
./gradlew test --tests "com.bandchu.api.domain.member.*"

참고