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 Fixture
지금 테스트가 많이 없어 속도 이슈가 없는데도 DB call을 피하는 이유
TestFixture를 쓰면 테스트간의 독립성이 사라지는 것 아닌지?
List<Review> reviews = reviewFactory.createAll();
// 단순 예시 입니당. 이렇게 하겠다는 것 X // 1~10 범위의 리뷰 데이터를 순차적으로 생성. string에 들어갈 값들은 "review"로 통일 List<Review> reviews = reviewFactory.createAll(1, 10, "review");
1차 MVP 끝나고 테스트를 거쳐 도입해보려고 해요.
The text was updated successfully, but these errors were encountered:
EunjiShin
No branches or pull requests
💁♀️ 제안 사항
👀 제안 이유
아래의 문제
가 생겼어요.Test Fixture
를 이용해 위 문제를 해결하고자 해요.✅ 참고 사항
지금 테스트가 많이 없어 속도 이슈가 없는데도 DB call을 피하는 이유
TestFixture를 쓰면 테스트간의 독립성이 사라지는 것 아닌지?
✍️ 적용한다면 언제?
1차 MVP 끝나고 테스트를 거쳐 도입해보려고 해요.
The text was updated successfully, but these errors were encountered: