使用unittest.TestCase能否实现以上相同功能,提供实例
时间: 2023-03-23 08:04:31 浏览: 297
TEST CASE 测试用例
可以使用unittest.TestCase来实现相同的功能,以下是一个示例:
```
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()
```
这个示例包含了三个测试用例,分别测试字符串的大写、是否全是大写和分割功能。使用unittest.TestCase可以方便地进行单元测试,确保代码的正确性。
阅读全文