파이썬 단위 테스트

파이썬은 기본적으로 제공하는 unittest(PyUnit) 모듈에서 단위 테스트를 지원. 어떤 모듈이나 함수를 작성할때 정상 작동여부를 테스트하는 과정을 거치는데, 단위 테스트를 사용하면 코드가 수정되어도 테스트를 동일하게 돌려볼 수 있음.

간단한 테스트 작성법은 아래와 같음.

"""
unittest is the batteries-included test module in the Python standard library. Its API will be familiar to ...
more ...