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

[20210602] Junit - @MethodSource, 짝코딩 #137

Open
JuHyun419 opened this issue Jun 2, 2021 · 0 comments
Open

[20210602] Junit - @MethodSource, 짝코딩 #137

JuHyun419 opened this issue Jun 2, 2021 · 0 comments
Labels

Comments

@JuHyun419
Copy link
Owner

@ParameterizedTest + @MethodSource

    @DisplayName("볼 테스트")
    @ParameterizedTest
    @MethodSource("generateData")
    void test_ball(List<Integer> playerLists, List<Integer> computerLists, int index) {
        PlayResult playResult = new PlayResult();
        int ballCount = playResult.countBall(playerLists, computerLists);

        int[] result = {2, 0};
        assertEquals(ballCount, result[index]);
    }

    static Stream<Arguments> generateData() {
        return Stream.of(
                Arguments.of(Arrays.asList(1, 2, 3), Arrays.asList(1, 3, 2), 0),
                Arguments.of(Arrays.asList(1, 2, 3), Arrays.asList(4, 5, 6), 1)
        );

image



간단 회고

이제 뭔가 공부에 적응이 되는 것 같다.
월, 화는 약간 힘들었었는데, 오늘은 제대로 한 것 같다! 앞으로 달릴일만~~

오늘 첫 페어 프로그래밍을 진행했다.
평소에 스터디를 통해 알게된 분과 진행을 했는데, 열정이나 학습이나 나와 비슷한 점이 많은 배울점이 많으신 분이다.

짝코딩을 진행하며 정말 많이 부족한걸 다시 한번 체감하게 되었다.. 😂
요구사항이 정확하지 않아서 일까..? 약간 설계나 구현력이 너무나 부족한 것 같다.
그치만 재미있었고, 좋은 경험이었따 !
@JuHyun419 JuHyun419 added the Java label Jun 2, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant