Skip to content

Commit

Permalink
✨ :: [#237] MassageDoamin / FetchMassageDomain에 profileImage 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
junseopark0331 committed Mar 28, 2024
1 parent 059032b commit c5d0f36
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@ final class FetchMassageRankListUseCaseTests: XCTestCase {
func testFetchMassageInfo() async throws {
XCTAssertEqual(massageRepository.fetchMassageRankListCallCount, 0)
let expected = [
MassageRankModel(id: 1, rank: 2, stuNum: "1111", memberName: "김시훈", gender: .man)
MassageRankModel(
id: 1,
rank: 2,
stuNum: "1111",
memberName: "김시훈",
gender: .man,
profileImage: ""
)
]
massageRepository.fetchMassageRankListHandler = { expected }

Expand Down

0 comments on commit c5d0f36

Please sign in to comment.