文件名称:unittest_demo:unittest是Python标准库中包含的测试框架
文件大小:2KB
文件格式:ZIP
更新时间:2024-04-16 07:56:40
Python
单元测试演示 第1部分:设置 依存关系 此仓库不需要外部依赖项。 如果您拥有Python 3,那就太好了。 安装 从命令行:fork / clone此存储库,然后切换到新目录。 git clone https://github.com/ajtran303/unittest_demo.git cd unittest_demo 运行测试 通过将规范作为模块来运行各个测试用例: python3 -m specs.test_imaginary_friend 要运行所有测试,请使用以下选项调用unittest模块: python3 -m unittest discover -s specs 这两个命令都将调用测试运行程序,其后台驻留程序应报告Ran 8 tests和FAILED (errors=8) 。 如果看不到,请确保发送正确的命令。
【文件预览】:
unittest_demo-trunk
----.gitignore(22B)
----README.md(726B)
----specs()
--------test_imaginary_friend.py(2KB)