로딩
티스토리 데이터 처리 중입니다.

Python pytest 테스팅 기초 (QA) 02강

 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 사칙연산 파일을 테스트하는 파일을 작성할 것이기 때문에, 테스트 당할 (?) 파일을 작성합니다.

기본적인 사칙연산 파일입니다. 일반 사칙연산과.....