[Python] 파이썬 pytest의 test fixture를 활용해보자
·
개발/Python
pytest에서 test fixture를 활용해서 조금 더 복잡한 테스트가 효율적으로 가능하도록 구현해 보자 파이썬 pytest의 fixture를 활용해 보자 test fixture가 무엇인가 아래 위키피디아에 따르면 소프트웨어를 일관되게 테스트할 수 있는 환경이라고 한다. 테스트 픽스처는 일부 항목, 장치 또는 소프트웨어를 일관되게 테스트하는 데 사용되는 환경입니다. https://en.wikipedia.org/wiki/Test_fixture#Software Test fixture - Wikipedia From Wikipedia, the free encyclopedia Type of testing environment A test fixture is an environment used to consis..
[Python] 파이썬 pytest를 활용해서 테스트 해보자
·
개발/Python
파이썬에서 유닛테스트를 구현하기 위해 pytest를 이해하고 활용해서 테스트를 구현해 본다. 파이썬 pytest를 활용해서 테스트해 보자 지난번 파이썬 테스트를 위해서 내장된 unittest 모듈을 활용해 보았다. 이번에는 pytest를 활용해서 파이썬을 테스트해 보도록 하겠다. 이번에는 Pycharm 보다 VS Code이 편해서 VS Code를 사용해서 진행해 본다. https://docs.pytest.org/en/stable/ pytest: helps you write better programs — pytest documentation pytest: helps you write better programs The pytest framework makes it easy to write small, r..