[关闭]
@songying 2018-07-18T19:15:11.000000Z 字数 456 阅读 1134

unittest.TestCase

unittest


class unittest.TestCase()

  1. class unittest.TestCase(methodName='runTest')

setUp()

Method called to prepare the test fixture. 该方法会在call test 方法前调用。 在该方法中所有raise 的exception 都被认为是error而非 test failure。 默认情况下不做任何事情。

tearDown()

Method called immediately after the test method has been called and the result recorded.

setUpClass()

tearDownClass()

run()

  1. run(result=None)

skipTest()

  1. skipTest(reason)

subTest()

  1. subTest(msg=None, **params)

debug()

fail()

属性

failureException

longMessage

maxDiff

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注