From 5f9d8a5d212a65fb8f2a96595a9f4b92086f17f4 Mon Sep 17 00:00:00 2001 From: gs97ahn Date: Mon, 4 Mar 2024 23:45:12 +0900 Subject: [PATCH] [TEST] refactor contact controller --- .../controller/user/ContactControllerTest.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/test/java/com/gabojait/gabojaitspring/api/controller/user/ContactControllerTest.java b/src/test/java/com/gabojait/gabojaitspring/api/controller/user/ContactControllerTest.java index d37863f..f8949eb 100644 --- a/src/test/java/com/gabojait/gabojaitspring/api/controller/user/ContactControllerTest.java +++ b/src/test/java/com/gabojait/gabojaitspring/api/controller/user/ContactControllerTest.java @@ -38,8 +38,8 @@ class ContactControllerTest { @MockBean private ContactService contactService; @Test - @DisplayName("인증코드 전송 요청을 하면 201을 반환한다.") - void givenContactCreateRequest_whenSendVerificationCode_thenReturn201() throws Exception { + @DisplayName("인증코드 전송 요청을 하면 201을 반환한다") + void givenValid_whenSendVerificationCode_thenReturn201() throws Exception { // given ContactCreateRequest request = createValidContactCreateRequest(); @@ -60,7 +60,7 @@ void givenContactCreateRequest_whenSendVerificationCode_thenReturn201() throws E } @Test - @DisplayName("이메일 미입력시 인증코드 전송 요청을 하면 400을 반환한다.") + @DisplayName("이메일 미입력시 인증코드 전송 요청을 하면 400을 반환한다") void givenBlankEmail_whenSendVerificationCode_thenReturn400() throws Exception { // given ContactCreateRequest request = createValidContactCreateRequest(); @@ -83,7 +83,7 @@ void givenBlankEmail_whenSendVerificationCode_thenReturn400() throws Exception { } @Test - @DisplayName("잘못된 이메일 포맷시 인증코드 전송 요청을 하면 400을 반환한다.") + @DisplayName("잘못된 이메일 포맷시 인증코드 전송 요청을 하면 400을 반환한다") void givenFormatEmail_whenSendVerificationCode_thenReturn400() throws Exception { // given ContactCreateRequest request = createValidContactCreateRequest(); @@ -106,8 +106,8 @@ void givenFormatEmail_whenSendVerificationCode_thenReturn400() throws Exception } @Test - @DisplayName("인증코드 확인 요청을 하면 200을 반환한다.") - void givenContactVerifyRequest_whenVerifyCode_thenReturn200() throws Exception { + @DisplayName("인증코드 확인 요청을 하면 200을 반환한다") + void givenValid_whenVerifyCode_thenReturn200() throws Exception { // given ContactVerifyRequest request = createContactVerifyRequest(); @@ -128,7 +128,7 @@ void givenContactVerifyRequest_whenVerifyCode_thenReturn200() throws Exception { } @Test - @DisplayName("이메일 미입력시 인증코드 확인 요청을 하면 400을 반환한다.") + @DisplayName("이메일 미입력시 인증코드 확인 요청을 하면 400을 반환한다") void givenBlankEmail_whenVerifyCode_thenReturn400() throws Exception { // given ContactVerifyRequest request = createContactVerifyRequest(); @@ -151,7 +151,7 @@ void givenBlankEmail_whenVerifyCode_thenReturn400() throws Exception { } @Test - @DisplayName("인증코드 인증코드 확인 요청을 하면 400을 반환한다.") + @DisplayName("인증코드 인증코드 확인 요청을 하면 400을 반환한다") void givenBlankVerificationCode_whenVerifyCode_thenReturn400() throws Exception { // given ContactVerifyRequest request = createContactVerifyRequest(); @@ -174,7 +174,7 @@ void givenBlankVerificationCode_whenVerifyCode_thenReturn400() throws Exception } @Test - @DisplayName("잘못된 이메일 포맷시 인증코드 확인 요청을 하면 400을 반환한다.") + @DisplayName("잘못된 이메일 포맷시 인증코드 확인 요청을 하면 400을 반환한다") void givenFormatEmail_whenVerifyCode_thenReturn400() throws Exception { // given ContactVerifyRequest request = createContactVerifyRequest();