本文整理汇总了Python中unittest.TestCase.shortDescription方法的典型用法代码示例。如果您正苦于以下问题:Python TestCase.shortDescription方法的具体用法?Python TestCase.shortDescription怎么用?Python TestCase.shortDescription使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类unittest.TestCase
的用法示例。
在下文中一共展示了TestCase.shortDescription方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: shortDescription
# 需要导入模块: from unittest import TestCase [as 别名]
# 或者: from unittest.TestCase import shortDescription [as 别名]
def shortDescription(self):
desc = _TestCase.shortDescription(self)
if HAS_PSUTIL and SHOW_PROC:
proc_info = ''
found_zombies = 0
try:
for proc in psutil.process_iter():
if proc.status == psutil.STATUS_ZOMBIE:
found_zombies += 1
proc_info = '[CPU:{0}%|MEM:{1}%|Z:{2}] {short_desc}'.format(psutil.cpu_percent(),
psutil.virtual_memory().percent,
found_zombies,
short_desc=desc if desc else '')
except Exception:
pass
return proc_info
else:
return _TestCase.shortDescription(self)
示例2: shortDescription
# 需要导入模块: from unittest import TestCase [as 别名]
# 或者: from unittest.TestCase import shortDescription [as 别名]
def shortDescription(self):
md = TestCase.shortDescription(self)
if md is None: md = self._testMethodName
return self.modulName + "::" + md