<p>转载:<a href="https://www.cnblogs.com/yufeihlf/p/5707929.html#test2">https://www.cnblogs.com/yufeihlf/p/5707929.html#test2</a></p>
<p><span style="color:#3399ea;"><strong>一、unittest模块各个属性说明</strong></span></p>
<p><span style="color:#f33b45;"><u><strong>1.unittest的属性如下:</strong></u></span></p>
<p>['BaseTestSuite', 'FunctionTestCase', 'SkipTest', 'TestCase', 'TestLoader', 'TestProgram', 'TestResult', 'TestSuite', 'TextTestResult', 'TextTestRunner', '_TextTestResult', '__all__', '__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__', '__unittest', 'case', 'defaultTestLoader', 'expectedFailure', 'findTestCases', 'getTestCaseNames', 'installHandler', 'loader', 'main', 'makeSuite', 'registerResult', 'removeHandler', 'removeResult', 'result', 'runner', 'signals', 'skip', 'skipIf', 'skipUnless', 'suite', 'util']</p>
<p>说明:</p>
<p><span style="color:#e579b6;"><u><strong>unittest.TestCase</strong></u></span>:TestCase类,所有测试用例类继承的基本类。</p>
<pre class="blockcode">class BaiduTest(unittest.TestCase):</pre>
<p><span style="color:#e579b6;"><u><strong>unittest.main()</strong></u></span>:使用她可以方便的将一个单元测试模块变为可直接运行的测试脚本,main() 方法使用TestLoader类来搜索所有包含在该模块中以“test”命名开头的测试方法,并自动执行他们。执行方法的默认顺序是:根据ASCII码的 顺序加载测试用例,数字与字母的顺序为:0-9,A-Z,a-z。所以以A开头的测试用例方法会优先执行,以a开头会后执行。</p>
<p><span style="color:#e579b6;"><u><strong>unittest.TestSuite()</strong></u></span>:unittest框架的TestSuite()类是用来创建测试套件的。</p>
<p><u><span style="color:#e579b6;"><strong>unittest.TextTextRunner()</strong></span></u>:unittest框架的TextTextRunner()类,通过该类下面的run()方法来运行suite所组装的测试用例,入参为suite测试套件。</p>
<p><span style="color:#e579b6;"><u><strong>unittest.defaultTestLoader()</strong></u></span>: defaultTestLoader()类,通 过该类下面的discover()方法可自动更具测试目录start_dir匹配查找测试用例文件(test*.py),并将查找到的测试用例组装到测试 套件,因此可以直接通过run()方法执行discover。用法如下:</p>
<pre class="blockcode">discover=unittest.defaultTestLoader.discover(test_dir, pattern='test_*.py')</pre>
<p><span style="color:#e579b6;"><u><strong>unittest.skip()</strong></u></span>:装饰器,当运行用例时,有些用例可能不想执行等,可用装饰器暂时屏蔽该条测试用例。一种常见的用法就是比如说想调试某一个测试用例,想先屏蔽其他用例就可以用装饰器屏蔽。</p>
<p>@unittest.skip(reason): skip(reason)装饰器:无条件跳过装饰的测试,并说明跳过测试的原因。</p>
<p>@unittest.skipIf(reason): skipIf(condition,reason)装饰器:条件为真时,跳过装饰的测试,并说明跳过测试的原因。</p>
<p>@unittest.skipUnless(reason): skipUnless(condition,reason)装饰器:条件为假时,跳过装饰的测试,并说明跳过测试的原因。</p>
<p>@unittest.expectedFailure(): expectedFailure()测试标记为失败。</p>
<p><span style="color:#f33b45;"><u><strong>2.TestCase类的属性如下:</strong></u></span></p>
<p>['__call__', '__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_addSkip', '_baseAssertEqual', '_classSetupFailed', '_deprecate', '_diffThreshold', '_formatMessage', '_getAssertEqualityFunc', '_truncateMessage', 'addCleanup', 'addTypeEqualityFunc', 'assertAlmostEqual', 'assertAlmostEquals', 'assertDictContainsSubset', 'assertDictEqual', 'assertEqual', 'assertEquals', 'assertFalse', 'assertGreater', 'assertGreaterEqual', 'assertIn', 'assertIs', 'assertIsInstance', 'assertIsNone', 'assertIsNot', 'assertIsNotNone', 'assertItemsEqual', 'assertLess', 'assertLessEqual', 'assertListEqual', 'assertMultiLineEqual', 'assertNotAlmostEqual', 'assertNotAlmostEquals', 'assertNotEqual', 'assertNotEquals', 'assertNotIn', 'assertNotIsInstance', 'assertNotRegexpMatches', 'assertRaises', 'assertRaisesRegexp', &# |
|