本文整理汇总了Python中moztest.results.TestResultCollection.extend方法的典型用法代码示例。如果您正苦于以下问题:Python TestResultCollection.extend方法的具体用法?Python TestResultCollection.extend怎么用?Python TestResultCollection.extend使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类moztest.results.TestResultCollection
的用法示例。
在下文中一共展示了TestResultCollection.extend方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Collection
# 需要导入模块: from moztest.results import TestResultCollection [as 别名]
# 或者: from moztest.results.TestResultCollection import extend [as 别名]
class Collection(unittest.TestCase):
def setUp(self):
c1 = TestContext("host1")
c2 = TestContext("host2")
c3 = TestContext("host2")
c3.os = "B2G"
c4 = TestContext("host1")
t1 = TestResult("t1", context=c1)
t2 = TestResult("t2", context=c2)
t3 = TestResult("t3", context=c3)
t4 = TestResult("t4", context=c4)
self.collection = TestResultCollection("tests")
self.collection.extend([t1, t2, t3, t4])
def test_unique_contexts(self):
self.assertEqual(len(self.collection.contexts), 3)