Skip to content

Commit

Permalink
feat: add missed test file
Browse files Browse the repository at this point in the history
  • Loading branch information
sichoi42 committed Jul 22, 2024
1 parent a231140 commit f8d6fdf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/test/java/utils/testdouble/interview/TestInterview.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ public static Interview asDefaultEntity(
.build().asEntity();
}

public static Interview asDefaultEntity(
Member member
) {
return TestInterview.builder()
.member(member)
.build().asEntity();
}

@Override
public Interview asEntity() {
return Interview.of(
Expand Down

0 comments on commit f8d6fdf

Please sign in to comment.