如何以编程方式运行python unittest测试

时间:2018-08-13 14:51:04

标签: python-3.x python-unittest

我有来自unittest文档的以下测试。

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()

我如何从另一个python程序运行以上测试,并能够检查结果?哪些测试失败了?

0 个答案:

没有答案