when 썸네일형 리스트형 [스프링| 스프링 입문 | 코드로 배우는 스프링] 회원 서비스 테스트 package hello.hellospring.service; // 패키지 선언import hello.hellospring.domain.Member; // Member 도메인 클래스를 가져옵니다.import hello.hellospring.repository.MemoryMemberRepository; // 회원 정보를 메모리에 저장하는 레포지토리 클래스를 가져옵니다.import org.assertj.core.api.Assertions; // assertj의 Assertions를 사용하여 더 읽기 쉽고 강력한 검증을 제공합니다.import org.junit.jupiter.api.AfterEach; // 각 테스트가 끝날 때마다 실행할 메소드를 지정합니다.import org.junit.jupiter.. 더보기 이전 1 다음