-
Notifications
You must be signed in to change notification settings - Fork 2
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
7 changed files
with
68 additions
and
73 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
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
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,6 +8,7 @@ | |
import org.junit.jupiter.api.Test; | ||
import shook.shook.member.domain.Member; | ||
import shook.shook.member_part.exception.MemberPartException; | ||
import shook.shook.song.domain.Artist; | ||
import shook.shook.song.domain.Genre; | ||
import shook.shook.song.domain.KillingParts; | ||
import shook.shook.song.domain.Song; | ||
|
@@ -17,6 +18,7 @@ class MemberPartTest { | |
|
||
private static Song SONG; | ||
private static Member MEMBER; | ||
private static Artist ARTIST; | ||
|
||
@BeforeEach | ||
void setUp() { | ||
|
@@ -27,8 +29,8 @@ void setUp() { | |
KillingPart.forSave(1, 10) | ||
) | ||
); | ||
|
||
SONG = new Song("title", "12345678901", "albumCover", "singer", 300, Genre.DANCE, killingParts); | ||
ARTIST = new Artist("profile", "image"); | ||
SONG = new Song("title", "12345678901", "albumCover", ARTIST, 300, Genre.DANCE, killingParts); | ||
MEMBER = new Member("[email protected]", "shook"); | ||
} | ||
|
||
|
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
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
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
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