-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
42 additions
and
73 deletions.
There are no files selected for viewing
40 changes: 0 additions & 40 deletions
40
src/test/java/com/soptie/server/domain/doll/DollServiceImplTest.java
This file was deleted.
Oops, something went wrong.
33 changes: 33 additions & 0 deletions
33
src/test/java/com/soptie/server/domain/doll/DollServiceTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package com.soptie.server.domain.doll; | ||
|
||
import org.junit.jupiter.api.DisplayName; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
import org.junit.jupiter.params.ParameterizedTest; | ||
import org.junit.jupiter.params.provider.CsvSource; | ||
import org.mockito.InjectMocks; | ||
import org.mockito.Mock; | ||
import org.mockito.junit.jupiter.MockitoExtension; | ||
|
||
import com.soptie.server.domain.member.MemberService; | ||
import com.soptie.server.persistence.repository.DollRepository; | ||
|
||
@ExtendWith(MockitoExtension.class) | ||
class DollServiceTest { | ||
|
||
@InjectMocks | ||
private MemberService memberService; | ||
|
||
@Mock | ||
private DollRepository dollRepository; | ||
|
||
@ParameterizedTest | ||
@DisplayName("[성공] 인형 타입에 해당하는 인형 이미지 주소를 토대로 DollImageResponse를 생성한다.") | ||
@CsvSource(value = {"brown, BROWN", "gray, GRAY", "red, RED", "white, WHITE"}) | ||
void acquireImageUriByDollType(String faceImageUrl, DollType dollType) { // TODO: 테스트 | ||
// given | ||
|
||
// when | ||
|
||
// then | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 0 additions & 26 deletions
26
src/test/java/com/soptie/server/domain/member/MemberServiceIntegrationTest.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters