写一个自动测试的Python 脚本
时间: 2023-03-13 10:42:53 浏览: 81
我可以为您提供一个Python脚本的例子:import unittestclass 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'])
# 检查s.split以指定字符分割
with self.assertRaises(TypeError):
s.split(2)if __name__ == '__main__':
unittest.main()
阅读全文