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

OrderProcessingServiceTest testFindTopCustomer 메소드 수정요청 #8

Open
mjkhub opened this issue Oct 31, 2024 · 0 comments
Open

Comments

@mjkhub
Copy link
Member

mjkhub commented Oct 31, 2024

  @Test
    void testFindTopCustomer() {
        String topCustomer = service.findTopCustomer(
                LocalDate.of(2023, 1, 1),
                LocalDate.of(2023, 1, 7)
        );
        assertTrue(topCustomer.isEmpty()); // -> assertFalse 로 수정해야함
        assertEquals("C1", topCustomer);
    }

OrderProcessingServiceTest의 "testFindTopCustomer"테스트 메소드를 주석과 같이 수정해야할 것 같습니다

추가적으로 OrderProcessingService 클래스의 processOrders의 테스트 메소드가 존재하지 않는 것 같습니다!

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

No branches or pull requests

1 participant