Django, 똑똑한 테스트 케이스를 만드는 3가지 방법
2016년 11월 18일- 테스트 클래스(TestClass) 작성 시, 뷰와 모델을 분리해 작성해라.
-
테스트 조건 별로 테스트 메서드를 나눠라.
-
그 테스트의 성격을 알 수 있도록 테스트 메서드의 이름을 지어라.
As long as your tests are sensibly arranged, they won’t become unmanageable. Good rules-of-thumb include having:
- a separate TestClass for each model or view.
- a separate test method for each set of conditions you want to test
- test method names that describe their function
원문링크: Django Tutorial