用python编写以上测试用例
时间: 2023-09-16 13:13:04 浏览: 121
编写测试用例
您可以使用以下 Python 代码编写以上测试用例:
```python
import unittest
class TestStringMethods(unittest.TestCase):
def test_upper(self):
self.assertEqual('hello'.upper(), 'HELLO')
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()
```
这是一个简单的示例,包括了两个测试用例:测试字符串的大写和测试字符串的分割。您可以根据需要编写自己的测试用例。
阅读全文