Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
명세란 무엇일까?
소프트웨어 개발 프로세스의 시작인 요구사항을 분석하고 정의하는 단계에서 작성되는 최종 산출물
단위테스트에서 Given / When / Then 에 대해 설명해주세요
Given : 테스트를 준비하는 과정, 테스트에 필요한 변수, 입력값을 준비하는단계이다.
When : 실제로 테스트를 실행해보는 단계이다.
Then : 마지막으로테스트를 검증하는 단계, 예상값과 테스트 결과값을 비교하여 검증한다.
테스트 코드를 작성하는 이유는?
무엇을 만들어야 하는지 파악할 수 있고, 동작 이해에 도움이 되고, 빠른 피드백을 받을 수 있고, 소프트웨어 품질 향상에 도움이 된다.
@SpringBootTest 가 하는 역할은?
애플리케이션을 실행하지 않고도 컨트롤러나 서비스 등을 테스트할 수 있다.
@test 가 하는 역할은?
해당 메소드가 테스트 메소드임을 나타내며, 테스트 결과를 출력한다.
mockito를 쓰는 이유는?
테스트할 코드에서 다른 객체를 대신하여 사용되며, 테스트할 때 객체 간의 의존성을 줄일 수 있다. 따라서 테스트 코드 작성의 효율성을 높일 수 있습니다.
assertAll 가 하는 역할은?
여러 개의 테스트 케이스를 한꺼번에 실행하여 테스트 결과를 확인할 수 있다.