-
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
4 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -118,7 +118,7 @@ void loginWithGoogleWithEmailNotRegistered() throws FirebaseAuthException { | |
} | ||
|
||
@Test | ||
@DisplayName("구글 계정으로 회원가입을 할 수 있다.") | ||
@DisplayName("구글 계정으로 회원가입을 한다.") | ||
void signUpWithGoogle() throws FirebaseAuthException { | ||
String email = "[email protected]"; | ||
String idToken = "test.id.token"; | ||
|
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 |
---|---|---|
|
@@ -82,7 +82,7 @@ void loginWithGoogleWithEmailNotRegistered() throws FirebaseAuthException { | |
} | ||
|
||
@Test | ||
@DisplayName("구글 계정으로 회원가입을 할 수 있다.") | ||
@DisplayName("구글 계정으로 회원가입을 한다.") | ||
void signUpWithGoogle() throws FirebaseAuthException { | ||
String email = "[email protected]"; | ||
String idToken = "test.id.token"; | ||
|
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 |
---|---|---|
|
@@ -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; | ||
|
@@ -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, "김치볶음밥 조리법"); | ||
|
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 |
---|---|---|
|
@@ -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"); | ||
|