코딩/Mobile 자동화 (new)
appium 자동화 2024 - 3) Pytest 예제
salzzak
2024. 2. 20. 07:48
728x90
https://docs.pytest.org/en/7.4.x/getting-started.html
pip install -U pytest
ㄴ 맥 터미널에서 설치 성공
# content of test_sample.py
def func(x):
return x + 1
def test_answer():
assert func(3) == 5
ㄴ 코드 입력 후
ㄴ pytest 테스트파일.py
명령어로 간단하게 테스트 동작 확인.
https://salzzak.tistory.com/95