python+unittest+HTMLTestreport配置
时间: 2023-06-24 12:09:27 浏览: 96
使用 python+unittest+HTMLTestRunner 配置 HTML 测试报告的步骤如下:
1. 安装 HTMLTestRunner 模块
可以使用以下命令安装 HTMLTestRunner 模块:
```
pip install HTMLTestRunner
```
2. 编写测试用例
使用 unittest 编写测试用例,例如:
```python
import unittest
class TestStringMethods(unittest.TestCase):
def test_upper(self):
self.assertEqual('foo'.upper(), 'FOO')
def test_isupper(self):
self.assertTrue('FOO'.isupper())
self.assertFalse('Foo'.isupper())
def test_split(self):
s = 'hello world'
self.assertEqual(s.split(), ['hello', 'world'])
# check that s.split fails when the separator is not a string
with self.assertRaises(TypeError):
s.split(2)
if __name__ == '__main__':
unittest.main()
```
3. 编写 HTML 测试报告生成代码
编写 HTML 测试报告生成代码,例如:
```python
import unittest
import HTMLTestRunner
class TestStringMethods(unittest.TestCase):
def test_upper(self):
self.assertEqual('foo'.upper(), 'FOO')
def test_isupper(self):
self.assertTrue('FOO'.isupper())
self.assertFalse('Foo'.isupper())
def test_split(self):
s = 'hello world'
self.assertEqual(s.split(), ['hello', 'world'])
# check that s.split fails when the separator is not a string
with self.assertRaises(TypeError):
s.split(2)
if __name__ == '__main__':
suite = unittest.TestSuite()
suite.addTest(TestStringMethods('test_upper'))
suite.addTest(TestStringMethods('test_isupper'))
suite.addTest(TestStringMethods('test_split'))
filename = 'test_report.html'
fp = open(filename, 'wb')
runner = HTMLTestRunner.HTMLTestRunner(
stream=fp,
title='Test Report',
description='This is a report of the test.'
)
runner.run(suite)
fp.close()
```
4. 运行测试用例并生成 HTML 测试报告
运行测试用例并生成 HTML 测试报告,例如:
```
python test_report.py
```
在当前目录下会生成一个名为 `test_report.html` 的 HTML 测试报告文件。打开该文件,即可查看测试结果。
阅读全文