This lesson focuses on adding a new GET endpoint to a Spring Boot application that returns multiple CashCard objects. It follows the Test-Driven Development (TDD) approach by first writing a failing test, understanding why it fails, implementing the necessary controller method, and then verifying that the test passes.

Key Points:

  1. Writing a Failing Test:
  2. Running the Test and Observing Failure:
  3. Understanding the 405 Error:
  4. Implementing the GET Endpoint in the Controller:
  5. Rerunning the Tests:

Conclusion:


추가 GET 엔드포인트에 대한 테스트 작성

이 강의는 여러 개의 CashCard 객체를 반환하는 새로운 GET 엔드포인트를 Spring Boot 애플리케이션에 추가하는 방법에 초점을 맞추고 있습니다. 실패하는 테스트를 먼저 작성하고, 왜 실패하는지 이해한 후, 필요한 컨트롤러 메소드를 구현하고, 테스트가 통과하는 것을 확인하는 테스트 주도 개발(TDD) 방식을 따릅니다.

주요 내용:

  1. 실패하는 테스트 작성:
  2. 테스트 실행 및 실패 관찰:
  3. 405 오류 이해하기:
  4. 컨트롤러에 GET 엔드포인트 구현:
  5. 테스트 재실행: