Skip to content

Commit

Permalink
test: 멤버 엔티티 테스트에 Bug 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kmebin committed Nov 1, 2023
1 parent 2f493bd commit 1eb913a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/java/com/moabam/api/domain/entity/MemberTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ void create_member_success() {
.socialId(socialId)
.nickname(nickname)
.profileImage(profileImage)
.bug(Bug.builder().build())
.build());
}

Expand All @@ -35,6 +36,7 @@ void create_member_noImage_success() {
.socialId(socialId)
.nickname(nickname)
.profileImage(null)
.bug(Bug.builder().build())
.build();

assertAll(
Expand Down

0 comments on commit 1eb913a

Please sign in to comment.