회원 서비스 테스트
-
[스프링 입문] Section 3.회원 관리 예제: 회원 서비스 테스트강의 기록/스프링 입문(김영한) 2021. 3. 16. 15:04
Section 3 비즈니스 요구사항 정리 회원 도메인과 리포지토리 만들기 회원 리포지토리 테스트 케이스 작성 회원 서비스 개발 회원 서비스 테스트 회원 서비스 테스트 테스트시 기본적으로 만들 큰 틀을 짜놓고 하면 좋음. 필요에 따라 변경하면서 만들면 좋음. // given(어떤 데이터가 주어졌을떄) // when(언제) // then (결과) hello.hellospring.service MemberServiceTest.java package hello.hellospring.service; import org.junit.jupiter.api.Test; import hello.hellospring.domain.Member; import hello.hellospring.repository.MemoryMemb..