-
Notifications
You must be signed in to change notification settings - Fork 0
[Test] 생성 시각에 의한 테스트 개선 #112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -9,6 +9,7 @@ | |
| import eatda.domain.store.Store; | ||
| import eatda.util.ImageUtils; | ||
| import eatda.util.MappingUtils; | ||
| import java.time.LocalDateTime; | ||
| import org.junit.jupiter.api.Nested; | ||
| import org.junit.jupiter.api.Test; | ||
| import org.springframework.http.HttpHeaders; | ||
|
|
@@ -64,9 +65,10 @@ class GetCheers { | |
| Member member = memberGenerator.generateRegisteredMember("nickname", "[email protected]", "123", "01011111111"); | ||
| Store store1 = storeGenerator.generate("111", "서울시 노원구 월계3동 123-45"); | ||
| Store store2 = storeGenerator.generate("222", "서울시 성북구 석관동 123-45"); | ||
| Cheer cheer1 = cheerGenerator.generateAdmin(member, store1); | ||
| Cheer cheer2 = cheerGenerator.generateAdmin(member, store1); | ||
| Cheer cheer3 = cheerGenerator.generateAdmin(member, store2); | ||
| LocalDateTime startAt = LocalDateTime.of(2025, 7, 26, 1, 0, 0); | ||
| Cheer cheer1 = cheerGenerator.generateAdmin(member, store1, startAt); | ||
| Cheer cheer2 = cheerGenerator.generateAdmin(member, store1, startAt.plusHours(1)); | ||
| Cheer cheer3 = cheerGenerator.generateAdmin(member, store2, startAt.plusHours(2)); | ||
|
|
||
| CheersResponse response = given() | ||
| .when() | ||
|
|
||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| package eatda.util; | ||
|
|
||
| import eatda.domain.AuditingEntity; | ||
| import java.time.LocalDateTime; | ||
| import org.springframework.test.util.ReflectionTestUtils; | ||
|
|
||
| public final class DomainUtils { | ||
|
|
||
| private static final String CREATED_AT_FIELD = "createdAt"; | ||
|
|
||
| private DomainUtils() { | ||
| } | ||
|
|
||
| public static <T extends AuditingEntity> void setCreatedAt(T entity, LocalDateTime createdAt) { | ||
| try { | ||
| ReflectionTestUtils.setField(entity, CREATED_AT_FIELD, createdAt); | ||
| } catch (Exception e) { | ||
| throw new IllegalArgumentException("Failed to set createdAt field", e); | ||
| } | ||
| } | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
지네릭 좋군요 👍🏻