We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@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의 테스트 메소드가 존재하지 않는 것 같습니다!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
OrderProcessingServiceTest의 "testFindTopCustomer"테스트 메소드를 주석과 같이 수정해야할 것 같습니다
추가적으로 OrderProcessingService 클래스의 processOrders의 테스트 메소드가 존재하지 않는 것 같습니다!
The text was updated successfully, but these errors were encountered: