TEST 코드


TEST 코드

package jpa.study_ex01.service; import jpa.study_ex01.domain.Member; import jpa.study_ex01.repository.MemberRepository; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; import org.springframework.transaction.annotation.Transactional; import static org.junit.Assert.*; @RunWith(SpringRunner.class) @SpringBoot...


#Junit

원문링크 : TEST 코드