testing2 Python pytest 테스팅 기초 (QA) 02강 Python pytest 테스팅 기초 (QA) 02강 01 사칙연산.py 파일 작성하기 (arithmetic_ops.py) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 def add(x, y): return x+y def sub(x, y): return x-y def mult(x, y): return x*y def div(x, y): try: quotient = x // y remainder = x % y return (quotient, remainder) except ZeroDivisionError: return 0 cs 사칙연산 파일을 테스트하는 파일을 작성할 것이기 때문에, 테스트 당할 (?) 파일을 작성합니다. 기본적인 사칙연산 파일입니다. 일반 사칙연산과.. 2022. 2. 1. Python pytest 테스팅 기초 (QA) 01강 Python pytest 테스팅 기초 (QA) 01강 01 PyTest 설치 1 pip install pytest cs 02 PyCharm 환경설정 변경 PyCharm - Settings (Preferences) - Tools - Diff & Merge - Python Integrated Tools - Testing - pytest 03 pytest 설치 확인 PyCharm - Terminal - Local - Command - pytest 입력하고 엔터 04 New PyCharm 프로젝트 만들기 05 New File (test_ch1.py) 만들기 1 2 3 4 5 6 7 8 9 10 11 12 # argument로 이름 (문자열 타입)을 받고 # 이름 내 모음 개수를 반환하는 함수 작성하기 def v.. 2022. 2. 1. 이전 1 다음