python - htmltestrunner源码有一处不太理解,求助
PHP中文网
PHP中文网 2017-04-17 17:59:26
0
1
346
    self.error_count += 1
    TestResult.addError(self, test, err)
    _, _exc_str = self.errors[-1]
    output = self.complete_output()
    self.result.append((2, test, output, _exc_str))
    if self.verbosity > 1:
        sys.stderr.write('E  ')
        sys.stderr.write(str(test))
        sys.stderr.write('\n')
    else:
        sys.stderr.write('E')
        

其中第三行的 _, _exc_str = self.errors[-1] 看不懂是什么意思,求大神解答

PHP中文网
PHP中文网

认证高级PHP讲师

全部回覆(1)
迷茫

從來沒用過, 只能看一下源碼,是對unittest的一些拓展.

  1. self.errors[-1]是最后一个 errors 也就是通过TestResult.addError(self, test, err)增加的errors.

  2. errors 參考 https://docs.python.org/2.7/library/unittest.html#unittest.TestResult.errors

A list containing 2-tuples TestCase instances and strings holding formatted tracebacks.

是一個二元組的list, 元組中第一個是TestCase實例也就是這次賦值給_(需要忽略的內容) 第二個是tracebacks是這次需要的內容.

因為htmltestrunner自己的註解說

        # result is a list of result in 4 tuple
        # (
        #   result code (0: success; 1: fail; 2: error),
        #   TestCase object,
        #   Test output (byte string),
        #   stack trace,
        # )
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!