일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- TableView
- UITableView
- alamofire
- PyQt5
- button
- Storyboard
- UIButton
- 그래프
- ios
- UIKit
- 어플리케이션
- Chart
- cocoapods
- 개발자
- graph
- Xcode
- Apple
- modal
- 개발
- 라이브러리
- PyQt
- Swift
- charts
- androidstudio
- Chrats
- Python
- kotlin
- library
- ui
- Android
Archives
- Today
- Total
반응형
목록pytest (1)
Jiwift
1. PyTest 설치 pip install -U pytest 2. PyTest 버전 확인 pytest --version 3. 기본 사용 3-1. 폴더 구성 . ├── PyTestdir/ ├── test_one.py 테스트 폴더 한 개와 테스트를 하기 위한 파이썬 코드를 작성 코드를 작성할 때 이름은 test_code.py, code_test.py 와 같이 언더바를 앞 뒤 기준으로 test 글씨를 넣어준다. 3-2. 테스트 생성 class TestClass: def test_first(self): assert 0 def test_second(self): a = 3 + 5 assert a == 8 def test_third(self): assert 1 class와 def는 Test_이름, Test이름과 같..
다른 개발/Python
2022. 12. 31. 11:44
반응형