Skip to content

Commit

Permalink
🩹 [STMT-273] 테스트 케이스 제목 말투 통일
Browse files Browse the repository at this point in the history
  • Loading branch information
05AM committed Jun 17, 2024
1 parent 9e0d724 commit 6ac084e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class GetById {

@Test
@WithMockMember
@DisplayName("[성공] 스터디 활동 단일 조회에 성공합니다.")
@DisplayName("[성공] 스터디 활동 단일 조회에 성공한다.")
void successTest() throws Exception {
Long studyId = StudyStub.getStudyId();
Long activityId = ActivityStub.getActivityId();
Expand Down Expand Up @@ -81,7 +81,7 @@ void successTest() throws Exception {

@Test
@WithMockMember
@DisplayName("[실패] 스터디가 존재하지 않는 경우 예외가 발생합니다.")
@DisplayName("[실패] 스터디가 존재하지 않는 경우 예외가 발생한다.")
void studyNotFoundTest() throws Exception {
Long studyId = StudyStub.getInvalidStudyId();
Long activityId = ActivityStub.getActivityId();
Expand Down Expand Up @@ -109,7 +109,7 @@ void studyNotFoundTest() throws Exception {

@Test
@WithMockMember(id = 3L)
@DisplayName("[실패] 스터디에 가입하지 않은 사용자인 경우 예외가 발생합니다.")
@DisplayName("[실패] 스터디에 가입하지 않은 사용자인 경우 예외가 발생한다.")
void notJoinedStudyTest() throws Exception {
Long studyId = StudyStub.getStudyId();
Long activityId = ActivityStub.getActivityId();
Expand Down Expand Up @@ -137,7 +137,7 @@ void notJoinedStudyTest() throws Exception {

@Test
@WithMockMember
@DisplayName("[실패] 활동이 존재하지 않는 경우 예외가 발생합니다.")
@DisplayName("[실패] 활동이 존재하지 않는 경우 예외가 발생한다.")
void notFoundActivityTest() throws Exception {
Long studyId = StudyStub.getStudyId();
Long activityId = ActivityStub.getInvalidActivityId();
Expand Down

0 comments on commit 6ac084e

Please sign in to comment.