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

3단계 - 사다리(게임 실행), 2단계 - 사다리(생성) 수정 #2281

Merged
merged 27 commits into from
Dec 1, 2024

Commits on Nov 13, 2024

  1. Configuration menu
    Copy the full SHA
    f4b11c4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    14a8418 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d672425 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2024

  1. Configuration menu
    Copy the full SHA
    5038429 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f2dd14b View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2024

  1. Configuration menu
    Copy the full SHA
    a9a2dd5 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2024

  1. Configuration menu
    Copy the full SHA
    ebc5785 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2024

  1. Configuration menu
    Copy the full SHA
    5cdc1fb View commit details
    Browse the repository at this point in the history
  2. docs(ladder): modify README_LADDER_RUN.md

    - X 생성
    - 0보다 작으면 오류
    - Y 생성
    - 0보다 작으면 오류
    
    feat(ladder): create X
    
    feat(ladder): create Y
    mitsui3point committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    51c30a9 View commit details
    Browse the repository at this point in the history
  3. docs(ladder): modify README_LADDER_RUN.md

    - X 이동
    - X 우로 이동
    - X 좌로 이동
    - X 좌로 이동 실패 0보다 작음
    
    feat(ladder): add X moveRight, moveLeft method
    
    test(ladder): add 오른쪽으로 이동한다, 왼쪽으로 이동한다, 왼쪽으로 이동 실패: 0미만
    mitsui3point committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    89aa3d9 View commit details
    Browse the repository at this point in the history
  4. docs(ladder): modify README_LADDER_RUN.md

    - Y 이동
    - Y 아래로 이동
    
    feat(ladder): add Y moveDown
    
    test(ladder): add Y 아래로 이동한다
    mitsui3point committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    72eec73 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2024

  1. docs(ladder): modify README_LADDER_RUN.md

    - Position 생성
    - Position 이동
    
    feat(ladder): add Position, constructor, move method
    
    test(ladder): add Position create, move test methods
    mitsui3point committed Nov 26, 2024
    Configuration menu
    Copy the full SHA
    e255ccc View commit details
    Browse the repository at this point in the history
  2. docs(ladder): modify README_LADDER_RUN.md

    - PlayerName 이름이 all 일 수 없다
    
    feat(ladder): rename Name -> PlayerName
    
    test(ladder): add PlayerName create_키워드_all_실패 test method
    mitsui3point committed Nov 26, 2024
    Configuration menu
    Copy the full SHA
    e589be3 View commit details
    Browse the repository at this point in the history
  3. docs(ladder): modify README_LADDER_RUN.md

    - Player 생성
    - Player 이름을 출력한다
    
    feat(ladder): add Player constructor, name method
    
    test(ladder): add PlayerTest create, name
    
    feat(ladder): modify PlayerName name() -> value()
    mitsui3point committed Nov 26, 2024
    Configuration menu
    Copy the full SHA
    2070c73 View commit details
    Browse the repository at this point in the history
  4. docs(ladder): modify README_LADDER_RUN.md

    - RewardName 생성
    
    feat(ladder): add RewardName constructor, value
    
    test(ladder): add RewardName create, value
    mitsui3point committed Nov 26, 2024
    Configuration menu
    Copy the full SHA
    9c44efa View commit details
    Browse the repository at this point in the history
  5. docs(ladder): modify README_LADDER_RUN.md

    - Reward 생성
    - Reward 이름을 출력한다
    - Reward Position 동등 비교
    - Player 포지션을 출력한다
    
    feat(ladder): add Reward constructor, name, isEqualPosition
    
    test(ladder): add RewardTest create, name, isEqualPosition
    
    feat(ladder): add Player position
    
    test(ladder): add PlayerTest position
    mitsui3point committed Nov 26, 2024
    Configuration menu
    Copy the full SHA
    2151c4d View commit details
    Browse the repository at this point in the history
  6. feat(ladder): modify Players field playerNames -> players

    test(ladder): modify PlayersTest create
    
    feat(ladder): modify Player name return type String -> PlayerName
    
    test(ladder): modify PlayerTest name
    mitsui3point committed Nov 26, 2024
    Configuration menu
    Copy the full SHA
    b8a8671 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2024

  1. docs(ladder): modify README_LADDER_RUN.md

    - Rewards 생성
    - Rewards 게임결과를 도출한다
    - Rewards 게임결과들을 도출한다
    - Result 생성
    - Result 플레이어의 결과인지 출력
    - Result RewardName 출력
    - Result PlayerName 출력
    - Results 생성
    - Results 결과목록 출력
    
    feat(ladder): add Result
    
    test(ladder): add ResultTest
    
    feat(ladder): add Results
    
    test(ladder): add ResultsTest
    
    feat(ladder): add Rewards
    
    test(ladder): add RewardsTest
    
    feat(ladder): add Players each method
    
    test(ladder): add PlayersTest each method
    
    feat(ladder): add Reward
    
    test(ladder): add RewardsTest
    mitsui3point committed Nov 27, 2024
    Configuration menu
    Copy the full SHA
    1965135 View commit details
    Browse the repository at this point in the history
  2. docs(ladder): modify README_LADDER_RUN.md

    - modify Reward position x 동등 비교
    - modify Reward field Position -> X
    - add Player 가로 일치 여부를 출력한다
    
    feat(ladder): modify Reward constructor, field Position -> X
    
    test(ladder): modify RewardTest
    
    feat(ladder): modify Rewards constructor
    
    test(ladder): modify RewardsTest
    
    feat(ladder): add Position xEquals
    
    test(ladder): add PositionTest xEquals
    mitsui3point committed Nov 27, 2024
    Configuration menu
    Copy the full SHA
    94c6c98 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2024

  1. Configuration menu
    Copy the full SHA
    8b44b4e View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2024

  1. docs(ladder): modify README_LADDER_RUN.md

    - Players 플레이어 모두 한칸 아래 이동
    - Point 이동
    
    feat(ladder): add Players moveLine
    
    test(ladder): add PlayersTest moveLine
    
    feat(ladder): add Point move
    
    test(ladder): add PointTest move
    mitsui3point committed Nov 30, 2024
    Configuration menu
    Copy the full SHA
    82f8055 View commit details
    Browse the repository at this point in the history
  2. docs(ladder): modify README_LADDER_RUN.md

    - Line 플레이어 모두 한칸 아래 이동
    
    feat(ladder): remove Players moveLine
    
    test(ladder): remove PlayersTest moveLine
    
    feat(ladder): add Line move
    
    test(ladder): add LineTest move
    
    feat(ladder): add Vertical
    
    test(ladder): add VerticalTest
    
    feat(ladder): add Players vertical
    
    test(ladder): add PlayersTest vertical
    mitsui3point committed Nov 30, 2024
    Configuration menu
    Copy the full SHA
    2ec82e6 View commit details
    Browse the repository at this point in the history
  3. docs(ladder): modify README_LADDER_RUN.md

    - Lines 플레이어 모두 마지막까지 이동
    
    feat(ladder): remove Players moveLine
    
    feat(ladder): add Lines move
    
    test(ladder): add LinesTest move
    mitsui3point committed Nov 30, 2024
    Configuration menu
    Copy the full SHA
    2284a1e View commit details
    Browse the repository at this point in the history
  4. docs(ladder): modify README_LADDER_RUN.md

    - PlayerName 생성
    - RewardName 생성
    
    feat(ladder): add RewardName
    
    test(ladder): add RewardNameTest
    mitsui3point committed Nov 30, 2024
    Configuration menu
    Copy the full SHA
    3ecc210 View commit details
    Browse the repository at this point in the history
  5. docs(ladder): modify README_LADDER_RUN.md

    - Ladder 결과들을 생성한다
    - Rewards 이름을 출력한다
    - Results 생성
    - Results 게임결과를 도출한다
    - Results 게임결과들을 도출한다
    
    feat(ladder): add Ladder results
    
    test(ladder): add LadderTest results
    
    feat(ladder): add Rewards names
    
    test(ladder): add RewardsTest names
    
    feat(ladder): add Results
    
    test(ladder): add ResultsTest
    mitsui3point committed Nov 30, 2024
    Configuration menu
    Copy the full SHA
    2772846 View commit details
    Browse the repository at this point in the history
  6. feat(ladder): modify unused imports,

    - modify unused Exceptions
    
    test(ladder): modify omitted @DisplayName
    mitsui3point committed Nov 30, 2024
    Configuration menu
    Copy the full SHA
    4b263f4 View commit details
    Browse the repository at this point in the history
  7. docs(ladder): modify README_LADDER_RUN.md

    - Rewards 생성 실패
    - Players 생성 실패
    - Vertical 생성 실패
    - InputView 실행 결과를 입력받는다.(실행 결과를 입력하세요. (결과는 쉼표(,)로 구분하세요))
    - InputView 결과를 볼 플레이어 이름을 입력받는다.(결과를 보고 싶은 사람은?)
    - InputView 결과를 볼 플레이어 전체를(all) 입력받는다.(결과를 보고 싶은 사람은?)
    - ResultView 사다리결과에 Rewards 를 붙여 출력한다
    - ResultView 실행 결과를 출력한다(실행 결과)
    - ResultView 실행 결과들을 출력한다(실행 결과)
    
    feat(ladder): add InputView inputNamesToRewards, inputResultPlayer
    
    feat(ladder): add ResultView renderResults
    - modify ResultView renderLadderAndRewards, toLadder
    
    feat(ladder): modify LadderController run
    
    feat(ladder): modify Players constructor
    
    test(ladder): modify PlayersTest create_실패_플레이어_목록이_1명_미만
    
    feat(ladder): modify Rewards constructor
    
    test(ladder): modify RewardsTest create_실패_rewardNames_갯수와_playersCount_갯수_불일치
    
    feat(ladder): modify Vertical constructor
    
    test(ladder): modify VerticalTest create_실패_0보다_작을_수_없다
    mitsui3point committed Nov 30, 2024
    Configuration menu
    Copy the full SHA
    9f5dd51 View commit details
    Browse the repository at this point in the history