-
Notifications
You must be signed in to change notification settings - Fork 65
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
201802087 류대희 #60
Open
eogml0716
wants to merge
11
commits into
2023-RealCoding:main
Choose a base branch
from
eogml0716:homework/testing
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
201802087 류대희 #60
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 제목, 본문 확인
Signed-off-by: inspire12 <[email protected]>
결과 이미지 업로드 했습니다. |
github action 을 통해 테스트가 통과한 결과를 캡쳐해주셔야합니다 ㅠㅠ |
업로드 했습니다! 죄송합니다 ㅠㅠ |
댓글 제대로 안 읽고 업로드 드려서 죄송합니다. 맨 밑에 2장에 업로드 했으니 확인 부탁드립니다! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
결과화면 (Display Name을 설정해주는데 뜨지 않네요. 터미널쪽에 PASSED 라고 2개 뜨시는 거 보면 확인할 수 있습니다.)
명세는 시스템이나 소프트웨어의 요구사항을 명확하게 기술한 문서나 명령어를 의미합니다. 소프트웨어 개발에서 명세는 설계자와 개발자 사이의 이해 차이를 최소화하고, 문제 발생 시 해결을 용이하게 하기 위해 필수적으로 작성됩니다.
Given / When / Then은 BDD(Behavior Driven Development)에서 사용되는 테스트 케이스 작성 방법입니다. Given은 테스트 환경을 설정하고, When은 어떤 상황에서 실행할 것인지를 정의하며, Then은 실행 결과를 검증하는 역할을 합니다.
테스트 코드를 작성하는 이유는 소프트웨
어 시스템의
품질을 향상시키기 위해, 코드 변경 시 기존 기능이 올바르게 작동하는지 검증하기 위해, 빠른 피드백을 받아 개발 속도를 향상시키기 위해 등 다양한 이유가 있습니다.
@SpringBootTest는 스프링 부트 애플리케이션을 테스트하기 위해 필요한 ApplicationContext를 로드하고, 자동 설정 및 컴포넌트 스캔을 활성화하여 통합 테스트를 수행합니다.
@test는 JUnit 프레임워크에서 테스트 메소드임을 나타내는 애노테이션으로, 해당 메소드를 실행해 테스트 케이스를 수행합니다.
Mockito는 자바에서 가장 널리 사용되는 목(mock) 라이브러리 중 하나로, 테스트에서 사용하는 의존성 객체의 행위를 가짜로 대체하여 테스트 환경을 구성할 수 있습니다.
assertAll은 여러 개의 검증(assert) 메소드를 묶어서 한 번에 실행할 수 있도록 하는 메소드로, 여러 검증 결과 중 실패한 검증이 있을 경우에도 모든 검증을 수행하도록 해줍니다.