Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
unanchoi authored May 9, 2024
1 parent 9c19975 commit d362d33
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion spring-code-for-deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,13 @@ public class MemberServiceTest {

## Controller Test
- Service를 Mocking하고 Test
- 통합 테스트



## 통합 테스트
- 각각의 계층별로 Test를 진행했지만, 모의 객체를 사용한 부분도 있고 각각의 계층에서는 문제가 없지만, 실제 동작할 때 문제가 생기는 상황들도 존재한다. 이를 줄이기 위해서 통합 테스트를 작성할 수 있다.

- Request -> Controller -> Service -> Repository -> Service -> Controller -> Response


Test Coverage 확보를 위해서 통합 테스트 또한 작성할 수 있습니다.

0 comments on commit d362d33

Please sign in to comment.