Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
unanchoi authored May 9, 2024
1 parent 7a5fd47 commit 9c19975
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions spring-code-for-deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public class Member extends BaseTimeEntity {

### Repository Test

Repository Test는 `@DataJpaTest`를 사용하여 작성할 수 있습니다. @SpringBoot
Repository Test는 `@DataJpaTest`를 사용하여 작성할 수 있습니다. `@SpringBootTest`는 Application Context를 로드하고, Spring Bean들을 모두 등록한 뒤에 Test를 하기 때문에 속도가 많이 느려집니다.

```java
@DataJpaTest
Expand Down Expand Up @@ -178,7 +178,8 @@ public class PostJpaRepositoryTest {

### Repository를 Mocking 하고 Test 하는 경우

Mocking은 실제 객체가 아닌 가짜 객체를 생성하여 Test를 작성하는 것 또는 그러한 기술을 의미함.
Mocking은 실제 객체가 아닌 가짜 객체를 생성하여 Test를 작성하는 것 또는 그러한 기술을 의미합니다.
- 단위 Test 자체가 독립적이어햐 하는데, 대부분의 코드들은 의존성을 갖고 있기 때문에, Mocking 없이 단위 Test를 작성하게 되면 Test하기가 어려워진다.


MemberRetrieverTest
Expand Down

0 comments on commit 9c19975

Please sign in to comment.