python单元测试代码实例
时间: 2023-10-11 16:13:23 浏览: 164
很高兴回答你的问题。以下是一个 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()
```
这是一个简单的测试字符串方法的例子。它包括三个测试方法:test_upper,test_isupper和test_split。每个测试方法都包含一些断言,用于检查方法是否按预期工作。在最后,我们使用unittest.main()运行所有测试方法。
阅读全文