python测试用例unittest实例
时间: 2023-07-12 07:32:46 浏览: 120
python的unittest测试类代码实例
5星 · 资源好评率100%
好的,以下是一个简单的 Python unittest 测试用例示例:
```python
import unittest
class TestStringMethods(unittest.TestCase):
def test_upper(self):
self.assertEqual('hello'.upper(), 'HELLO')
def test_isupper(self):
self.assertTrue('HELLO'.isupper())
self.assertFalse('Hello'.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()
```
在这个示例中,我们定义了一个名为 `TestStringMethods` 的测试类,并在其中定义了三个测试方法。每个测试方法都使用了 `assert` 方法来判断预期结果和实际结果是否一致。最后,在 `if __name__ == '__main__':` 语句下,我们调用了 `unittest.main()` 来执行所有的测试方法。
您可以将这个示例保存为一个 Python 文件,比如 `test_string_methods.py`,然后在命令行中运行 `python test_string_methods.py` 来执行测试用例。
阅读全文