Skip to content
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

Issue/#41 #73

Merged
merged 4 commits into from
Sep 4, 2024
Merged

Issue/#41 #73

merged 4 commits into from
Sep 4, 2024

Conversation

kwonssshyeon
Copy link
Member

@kwonssshyeon kwonssshyeon commented Aug 31, 2024

๐Ÿ”Ž ์ž‘์—… ๋‚ด์šฉ

  • user reader, store port ํŒจํ‚ค์ง€๋กœ ์ด๋™
  • ์œ ์ € ์ŠคํŠธ๋ฆญ ์กฐํšŒ Strick -> Streak ์ด๋ฆ„ ๋ณ€๊ฒฝ
  • ์œ ์ € ํ†ตํ•ฉ ํ…Œ์ŠคํŠธ ์ž‘์„ฑ
    • ์œ ์ € ์ŠคํŠธ๋ฆญ ์กฐํšŒ
    • ์œ ์ € ๋žญํ‚น ์กฐํšŒ

To Reviewers ๐Ÿ“ข

์ฒดํฌ ๋ฆฌ์ŠคํŠธ

  • ํ…Œ์ŠคํŠธ๋ฅผ ์ž‘์„ฑํ–ˆ์Šต๋‹ˆ๋‹ค.
  • ํ…Œ์ŠคํŠธ๋ฅผ ํ†ต๊ณผํ–ˆ์Šต๋‹ˆ๋‹ค.
  • API ๋ณ€๊ฒฝ์‚ฌํ•ญ์ด ์กด์žฌํ•ฉ๋‹ˆ๋‹ค.
  • API ํ˜ธ์ถœ์„ ์ง์ ‘ ์‹ค์‹œํ•˜์˜€๊ณ , ํ•ด๋‹น ๋ฐ์ดํ„ฐ๊ฐ€ ์ •์ƒ์ ์œผ๋กœ ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค.
  • ๊ธฐ์กด ์ฝ”๋“œ์— ์˜ํ–ฅ์„ ์ฃผ๋Š” ์ž‘์—… ๋‚ด์šฉ์ด ์กด์žฌํ•ฉ๋‹ˆ๋‹ค.
  • ํ–ฅํ›„ ์ถ”๊ฐ€์ ์ธ ์ž‘์—…์ด ํ•„์š”ํ•œ ๋ถ€๋ถ„์ด ์žˆ์Šต๋‹ˆ๋‹ค.

โž• ๊ด€๋ จ ์ด์Šˆ

@kwonssshyeon kwonssshyeon marked this pull request as draft August 31, 2024 12:04
Copy link

github-actions bot commented Sep 4, 2024

Unit Test Results

28 testsโ€‚โ€ƒโ€ƒ28 โœ”๏ธโ€ƒโ€ƒ2s โฑ๏ธ
โŸโ€„8 suitesโ€ƒโ€ƒโŸโ€„0 ๐Ÿ’ค
โŸโ€„8 filesโ€„โ€‚โ€ƒโ€ƒโŸโ€„0 โŒ

Results for commit 2a23a28.

@kwonssshyeon kwonssshyeon marked this pull request as ready for review September 4, 2024 04:07
Comment on lines +60 to +70
assertThat(users.size()).isEqualTo(5);
assertThat(users.get(0).getNickname()).isEqualTo("user5");
assertThat(users.get(1).getNickname()).isEqualTo("user4");
assertThat(users.get(2).getNickname()).isEqualTo("user3");
assertThat(users.get(3).getNickname()).isEqualTo("user2");
assertThat(users.get(4).getNickname()).isEqualTo("user1");

assertThat(users.get(0).getExp()).isGreaterThan(users.get(1).getExp());
assertThat(users.get(1).getExp()).isGreaterThan(users.get(2).getExp());
assertThat(users.get(2).getExp()).isGreaterThan(users.get(3).getExp());
assertThat(users.get(3).getExp()).isGreaterThan(users.get(4).getExp());
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

assertAll์„ ์‚ฌ์šฉํ•˜๋ฉด ์กฐ๊ธˆ ๋” ๊ฐ€๋…์„ฑ ์žˆ๊ฒŒ ํ…Œ์ŠคํŠธ ํ™•์ธ์ด ๊ฐ€๋Šฅํ•ด์š”!

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

๋„ต ๋‹ค์Œ์— ์ˆ˜์ •ํ• ๋•Œ ๋ฐ˜์˜ํ•ด๋ณด๊ฒ ์Šต๋‹ˆ๋‹ค !

@momnpa333
Copy link
Collaborator

์ด์ œ์•ผ approve๋ฅผ ๋“œ๋ฆฌ๋„ค์šฉ ๋‹ค์Œ๋ถ€ํ„ฐ๋Š” ๋ฐ”๋กœ๋ฐ”๋กœ ๋ฆฌ๋ทฐํ•ด๋“œ๋ฆด๊ฒŒ์šฉ ๊ณ ์ƒํ•˜์…จ์Šต๋‹ˆ๋‹ค!

Copy link
Collaborator

@bayy1216 bayy1216 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm
์ˆ˜๊ณ ํ•˜์…จ์Šต๋‹ˆ๋‹ค

@kwonssshyeon kwonssshyeon merged commit debdc6f into main Sep 4, 2024
3 checks passed
@kwonssshyeon kwonssshyeon deleted the issue/#41 branch September 4, 2024 11:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

์‚ฌ์šฉ์ž์˜ ์ŠคํŠธ๋ฆญ ์กฐํšŒ
3 participants