-
Notifications
You must be signed in to change notification settings - Fork 8
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
1 parent
3e4160a
commit 3eef529
Showing
2 changed files
with
7 additions
and
10 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 |
---|---|---|
|
@@ -15,13 +15,13 @@ class MatchingTest { | |
|
||
@Test | ||
@DisplayName("멤버 리스트를 받아서 매칭 결과를 반환한다.") | ||
void matchGroup(){ | ||
void matchGroup() { | ||
List<Member> members = List.of( | ||
new Member(1L, "[email protected]"), | ||
new Member(2L, "[email protected]"), | ||
new Member(3L, "[email protected]"), | ||
new Member(4L, "[email protected]") | ||
); | ||
); | ||
int matchingSize = 2; | ||
|
||
Map<Long, List<Long>> results = matching.matchGroup(members, matchingSize); | ||
|
13 changes: 5 additions & 8 deletions
13
backend/src/test/java/corea/member/service/MatchingServiceTest.java
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