일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- pytorch
- Linux
- file
- DB
- LLM
- GitLab
- judge
- Flask
- docker
- Laravel
- list
- pandas
- Paper
- Python
- KAKAO
- Windows
- Database
- AI
- numpy
- Mac
- Package
- TORCH
- Converting
- format
- enV
- Container
- PostgreSQL
- CUDA
- git
- evaluation
Archives
- Today
- Total
Daily Develope
[Python] 단위테스트 (Unit test) 본문
main_test.py 에서 특정 모듈에서 선별된 기능들만 일괄 테스트
ㅇ main_test.py
- suite_algorithm function에 명시된 기능만 테스트
import unittest
def _function_list(class_object):
return [x for x in class_object.__dict__ if type(class_object.__dict__[x]) == type(_function_list)]
def suite_algorithm():
### Algorithm - Rating
from ... import AlgorithmTestcase
suite = unittest.TestSuite()
suite.addTest(AlgorithmTestcase('test_al_01'))
return suite
def suite_accuracy():
from ... import AccuracyTestcase
suite = unittest.TestSuite()
# for all
for fut in _function_list(AccuracyTestcase):
suite.addTest(AccuracyTestcase(fut))
return suite
def suite_db():
from ... import MyDBTestcase
suite = unittest.TestSuite()
suite.addTest(MyDBTestcase('test_search'))
return suite
if __name__ == '__main__':
runner = unittest.TextTestRunner()
runner.run(suite_algorithm())
# runner.run(suite_accuracy())
# runner.run(suite_db())
ㅇ AlgorithmTestcase 클래스
import unittest
...
class AlgorithmTestcase(unittest.TestCase):
def test_al_01(self):
expect_value = 123
self.assertEqual(al01.result("..."), expect_value)
def test_al_02(self):
expect_value = "hello world"
self.assertEqual(al02.result("..."), expect_value)
...
ㅇ main_test 테스트 실행
$ python main_test.py
ㅇ AlgorithmTestcase 클래스에 정의된 전체 테스트케이스 실행
$ python -m unittest {target_dir_path}/{target_testcase_file_name}.py
'Develope > Python' 카테고리의 다른 글
[Python] 시간 변환 (datetime) (0) | 2022.12.05 |
---|---|
[Python] Json 읽기 / 쓰기 (0) | 2022.11.15 |
[Python] 엑셀(Excel) 파일 데이터 읽기/쓰기 (0) | 2022.09.22 |
[Anaconda] Python conda 가상환경 (0) | 2022.07.04 |
[Python] 시간 측정 (예제코드) (0) | 2022.06.28 |
Comments