JunsuLime / spring-cloud-native-explorer

Spring cloud explorer
1 stars 0 forks source link

스프링부트 어플리케이션 테스트 #17

Closed JunsuLime closed 3 years ago

JunsuLime commented 3 years ago

"테스트"는 빠른 피드백 순환을 가능하게 하는 가장 중요한 수단이다.

  1. 외부 의존성이 제거된 통합테스트
  2. 마이크로서비스 아키텍처에서 시스템 전 구간을 아우르는 통합테스트

두가지에 대해서 다룰 것이고 이번 이슈에서는 1번을 볼 것이다.

JunsuLime commented 3 years ago

책에서는 junit4 기준으로 application context 가 정상적으로 올라오는지 확인하는 테스트를 보여주었다. junit5 기준으로 문서를 읽어보자.

Testing