spring @DataJpaTest를 이용한 TestCase
JPA 애플리케이션을 테스트 하기 위해서 @DataJpaTest를 사용할 수 있습니다.@Component 빈들은 ApplicationContext에 로그되지 않고 @Entity, JPA repositories만 구성됩니다. UserRepositoryTest@RunWith(SpringRunner.class) @DataJpaTest @TestPropertySource(locations = "classpath:application.properties") public class UserRepositoryTest { @Autowired private UserRepository userRepository; @Test public void findByUsername() { String username = "papa"..
개발
2018. 8. 7. 16:52