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

[숫자 야구] 이새힘 미션 제출합니다. #4

Open
wants to merge 28 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
8dad83a
feat : init new-pow project
new-pow Nov 26, 2022
e8dacf8
Merge branch 'main' of https://github.com/konkuk-tech-course/java-bas…
new-pow Nov 26, 2022
f5ecc16
docs : 기능명세서 초안
new-pow Nov 26, 2022
af8936c
add : 기능 구현을 위한 클래스 생성
new-pow Nov 26, 2022
1f6b360
feat (Baseball) : 숫자 범위 유효성 체크 메서드
new-pow Nov 26, 2022
ae1e4b1
feat (Baseball) : 중복 숫자 유효성 체크 메서드
new-pow Nov 26, 2022
b2ab42f
feat (Baseball) : baseball 클래스 생성자
new-pow Nov 26, 2022
e90d9f6
feat (Baseball) : baseball 사이즈 유효성 체크 메서드, numbers getter 메서드
new-pow Nov 26, 2022
a272e98
docs (Baseball) : baseball 사이즈 유효성 체크 메서드, numbers getter 메서드 업데이트
new-pow Nov 26, 2022
aa2b78a
test (baseball) : baseball 생성자 기본기능 유효성 체크
new-pow Nov 26, 2022
e54c34f
feat (NumberGenerator) : 3자리 랜덤 숫자 뽑기 구현
new-pow Nov 26, 2022
397b29f
test (NumberGenerator) : 3자리 랜덤 숫자 뽑기 테스트
new-pow Nov 26, 2022
320f6e3
docs (NumberGenerator) : 3자리 랜덤 숫자 뽑기 업데이트
new-pow Nov 26, 2022
1c4e6cf
feat (controller) : 게임 시작 메서드 생성
new-pow Nov 26, 2022
3e7661c
refactor : 패키지 구성 변경
new-pow Nov 26, 2022
5c5cf91
feat (view) : user 숫자 입력 관련 기능 구현
new-pow Nov 26, 2022
b872d5f
test (domain) : 숫자 범위 오류시 예외처리
new-pow Nov 26, 2022
c41e57a
fix (domain) : 예외처리시 오류메시지 오타
new-pow Nov 26, 2022
c33d2e9
docs : 기능명세서 업데이트
new-pow Nov 26, 2022
9d523db
feat (domain) : baseball 정답 판정 클래스 구현
new-pow Nov 26, 2022
4257b7d
feat (domain) : baseball 정답 판정 기능 클래스 구현
new-pow Nov 26, 2022
f1df31c
refactor (view) : 에러메시지 enum 구현
new-pow Nov 26, 2022
914c870
feat (controller) : startGame 메서드
new-pow Nov 26, 2022
30748f6
feat (controller) : 게임 init 메서드
new-pow Nov 26, 2022
4d4f8f3
feat (controller) : 라운드 구현
new-pow Nov 26, 2022
c2dc5ad
feat (controller) : 게임 재시작 기능 구현
new-pow Nov 26, 2022
50fe864
refactor : 메서드명 변경
new-pow Nov 26, 2022
185047b
test (view) : userInput 기능
new-pow Nov 26, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor : 메서드명 변경
new-pow committed Nov 26, 2022
commit 50fe8645039d936cd543f118e9988e49993a8757
2 changes: 1 addition & 1 deletion src/main/java/baseball/util/NumberGenerator.java
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@

public class NumberGenerator {

public Baseball numberGenerate() {
public Baseball baseballGenerate() {
return new Baseball(getNumbers());
}