Skip to content

Commit

Permalink
♻️ exception messages
Browse files Browse the repository at this point in the history
  • Loading branch information
HaiSeong committed Aug 6, 2024
1 parent 19ef7f6 commit d76500a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void loginWithGoogleWithEmailNotRegistered() throws FirebaseAuthException {
}

@Test
@DisplayName("구글 계정으로 회원가입을 할 수 있다.")
@DisplayName("구글 계정으로 회원가입을 한다.")
void signUpWithGoogle() throws FirebaseAuthException {
String email = "[email protected]";
String idToken = "test.id.token";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ void loginWithGoogleWithEmailNotRegistered() throws FirebaseAuthException {
}

@Test
@DisplayName("구글 계정으로 회원가입을 할 수 있다.")
@DisplayName("구글 계정으로 회원가입을 한다.")
void signUpWithGoogle() throws FirebaseAuthException {
String email = "[email protected]";
String idToken = "test.id.token";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import net.pengcook.category.repository.CategoryRecipeRepository;
import net.pengcook.category.repository.CategoryRepository;
import net.pengcook.recipe.domain.Recipe;
import net.pengcook.recipe.service.RecipeService;
import net.pengcook.user.domain.User;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
Expand All @@ -33,7 +32,7 @@ class CategoryServiceTest {
private CategoryRecipeRepository categoryRecipeRepository;

@Test
@DisplayName("레시피의 카테고리를 저장할 수 있다.")
@DisplayName("레시피의 카테고리를 저장한다.")
void saveCategories() {
User author = new User("[email protected]", "ela", "엘라", "ela.jpg", "KOREA");
Recipe recipe = new Recipe(1L, "김치볶음밥", author, LocalTime.of(0, 30, 0), "김치볶음밥이미지.jpg", 3, 2, "김치볶음밥 조리법");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class UserBlockTest {

@Test
@DisplayName("UserBlock 객체를 생성할 수 있다.")
@DisplayName("UserBlock 객체를 생성한다.")
void create() {
User user_loki = new User(1L, "[email protected]", "loki", "로키", "loki.jpg", "KOREA");
User user_pond = new User(2L, "[email protected]", "pond", "폰드", "pond.jpg", "KOREA");
Expand Down

0 comments on commit d76500a

Please sign in to comment.