本文整理汇总了Python中ChorusGlobals.get_logserver方法的典型用法代码示例。如果您正苦于以下问题:Python ChorusGlobals.get_logserver方法的具体用法?Python ChorusGlobals.get_logserver怎么用?Python ChorusGlobals.get_logserver使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ChorusGlobals
的用法示例。
在下文中一共展示了ChorusGlobals.get_logserver方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setUpClass
# 需要导入模块: import ChorusGlobals [as 别名]
# 或者: from ChorusGlobals import get_logserver [as 别名]
def setUpClass(cls):
'''
setUpClass is executed every time before run a test suite
'''
suite_dependency = cls.get_suite_dependency()
if len(suite_dependency) > 0:
suites = ChorusGlobals.get_testresult().suites
mapping = {}
for key, value in suites.iteritems():
mapping[key] = value.statusflag
for d in suite_dependency:
if mapping.has_key(d) and not mapping[d]:
raise Exception("Has failed dependency test suite %s" %(str(d)))
cls.suite_starttime = time.time()
cls.logserver = ChorusGlobals.get_logserver()
cls.logserver.flush_console()
super(MyTestCase,cls).setUpClass()
cls.logger = ChorusGlobals.get_logger()
cls.suite_name = Utils.get_current_classname(cls)
ChorusGlobals.set_current_suitename(cls.suite_name)
from VerificationManagement import VerificationManagement
cls.vm = VerificationManagement()
cls.result = cls.vm.check_suitebaseline(cls.suite_name)
cls.result.description = Utils.parse_description(cls.__doc__)
cls.timestamp = Utils.get_timestamp()
cls.config = ChorusGlobals.get_configinfo()
cls.parameters = ChorusGlobals.get_parameters()
示例2: setUpClass
# 需要导入模块: import ChorusGlobals [as 别名]
# 或者: from ChorusGlobals import get_logserver [as 别名]
def setUpClass(cls):
'''
setUpClass is executed every time before run a test suite
'''
cls.suite_starttime = time.time()
cls.logserver = ChorusGlobals.get_logserver()
cls.logserver.flush_console()
super(MyTestCase,cls).setUpClass()
cls.logger = ChorusGlobals.get_logger()
cls.suite_name = Utils.get_current_classname(cls)
from VerificationManagement import VerificationManagement
cls.vm = VerificationManagement()
cls.result = cls.vm.check_suitebaseline(cls.suite_name)
cls.timestamp = Utils.get_timestamp()
cls.config = ChorusGlobals.get_configinfo()
cls.parameters = ChorusGlobals.get_parameters()