File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
core/data/src/test/java/com/puzzle/data/source/matching Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 11package com.puzzle.data.source.matching
22
3+ import com.puzzle.network.model.matching.GetCanFreeMatchResponse
34import com.puzzle.network.model.matching.GetContactsResponse
45import com.puzzle.network.model.matching.GetMatchInfoResponse
56import com.puzzle.network.model.matching.GetOpponentProfileBasicResponse
@@ -73,12 +74,21 @@ class FakeMatchingDataSource : MatchingDataSource {
7374 matchedValueList = listOf (" 음악" , " 여행" , " 독서" )
7475 )
7576
77+ override suspend fun getToMeMatchInfoList (): List <GetMatchInfoResponse > = emptyList()
78+
79+ override suspend fun getFromMeMatchInfoList (): List <GetMatchInfoResponse > = emptyList()
80+
81+ override suspend fun getNewInstantMatch () {}
82+
7683 override suspend fun getContacts (): GetContactsResponse = GetContactsResponse ()
7784
7885 override suspend fun refuseMatch () {}
7986 override suspend fun reportUser (userId : Int , reason : String ) {}
8087 override suspend fun blockUser (matchId : Int ) {}
8188 override suspend fun blockContacts (phoneNumbers : List <String >) {}
89+ override suspend fun getCanFreeMatch (): GetCanFreeMatchResponse =
90+ GetCanFreeMatchResponse (canFreeMatch = false )
91+
8292 override suspend fun checkMatchingPiece () {}
8393 override suspend fun acceptMatching (){}
8494}
You can’t perform that action at this time.
0 commit comments