及时从西装进行一次测试

时间:2015-08-22 20:52:43

标签: python python-2.7 python-unittest

我使用Pythons unittest就像在unittests doc中的示例一样。我测试服务器应用程序,一次运行每个测试对我来说很重要。我在文档中找不到如何做到这一点。

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

1 个答案:

答案 0 :(得分:0)

查看文档:{​​{3}}

您可以指定特定方法:

python -m unittest test_module.TestClass.test_method

所以在你的情况下:

python -m unittest [FileName].TestStringMethods.test_upper