junit test
-
[Spring] junit 테스트 해보기Spring 2022. 1. 20. 18:01
인프런 수업 [우아한 형제 김영한] 패키지, 클래스, 인터페이스 생성 hello.hellospring.domain -> Member.java hello.hellospring.repository-> MemberRepository.java (인터페이스) hello.hellospring.repository-> MemoryMemberRepository.java hello.hellospring.domain -> Member.java package hello.hellospring.domain; public class Member { private Long id; private String name; public Long getId() { return id; } public void setId(Long id) { t..