Skip to content

Commit d889146

Browse files
committed
docs: 문서 테스트 패키지 이동 & 문서 내용 보충
1 parent ae431e4 commit d889146

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/test/java/eatda/document/store/CheerDocumentTest.java renamed to src/test/java/eatda/document/cheer/CheerDocumentTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package eatda.document.store;
1+
package eatda.document.cheer;
22

33
import static org.mockito.ArgumentMatchers.any;
44
import static org.mockito.ArgumentMatchers.anyLong;

src/test/java/eatda/document/store/StoreDocumentTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ class GetStoresByCheeredMember {
231231
RestDocsRequest requestDocument = request()
232232
.tag(Tag.STORE_API)
233233
.summary("회원이 응원한 가게 목록 조회")
234+
.description("- 응답 순서 : 최신 응원순")
234235
.requestHeader(
235236
headerWithName(HttpHeaders.AUTHORIZATION).description("액세스 토큰")
236237
);
@@ -265,7 +266,8 @@ class GetStoresByCheeredMember {
265266
.then().statusCode(200);
266267
}
267268

268-
@EnumSource(value = BusinessErrorCode.class, names = {"UNAUTHORIZED_MEMBER", "EXPIRED_TOKEN", "INVALID_MEMBER_ID"})
269+
@EnumSource(value = BusinessErrorCode.class, names = {"UNAUTHORIZED_MEMBER", "EXPIRED_TOKEN",
270+
"INVALID_MEMBER_ID"})
269271
@ParameterizedTest
270272
void 회원이_응원한_음식점_목록_조회_실패(BusinessErrorCode errorCode) {
271273
doThrow(new BusinessException(errorCode)).when(storeService).getStoresByCheeredMember(anyLong());

0 commit comments

Comments
 (0)