当前位置: 首页>>代码示例>>Python>>正文


Python testcase.TestCase方法代码示例

本文整理汇总了Python中testtools.testcase.TestCase方法的典型用法代码示例。如果您正苦于以下问题:Python testcase.TestCase方法的具体用法?Python testcase.TestCase怎么用?Python testcase.TestCase使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在testtools.testcase的用法示例。


在下文中一共展示了testcase.TestCase方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: tearDown

# 需要导入模块: from testtools import testcase [as 别名]
# 或者: from testtools.testcase import TestCase [as 别名]
def tearDown(self):
        self.index.disconnect()
        self.coord.stop()
        super(TestCase, self).tearDown() 
开发者ID:gnocchixyz,项目名称:gnocchi,代码行数:6,代码来源:base.py

示例2: setUp

# 需要导入模块: from testtools import testcase [as 别名]
# 或者: from testtools.testcase import TestCase [as 别名]
def setUp(self):
        super(TestCase, self).setUp()
        self.loop = asyncio.new_event_loop()
        self.addCleanup(self.loop.close)
        asyncio.set_event_loop(self.loop) 
开发者ID:maas,项目名称:python-libmaas,代码行数:7,代码来源:__init__.py

示例3: patch

# 需要导入模块: from testtools import testcase [as 别名]
# 或者: from testtools.testcase import TestCase [as 别名]
def patch(self, obj, attribute, value=mock.sentinel.unset):
        """Patch `obj.attribute` with `value`.

        If `value` is unspecified, a new `Mock` will be created and patched-in
        instead. Its ``__name__`` attribute will be set to `attribute`.

        This is a thin customisation of `testtools.TestCase.patch`, so refer
        to that in case of doubt.

        :return: The patched-in object.
        """
        if value is mock.sentinel.unset:
            value = mock.Mock(__name__=attribute)
        super(TestCase, self).patch(obj, attribute, value)
        return value 
开发者ID:maas,项目名称:python-libmaas,代码行数:17,代码来源:__init__.py

示例4: __init__

# 需要导入模块: from testtools import testcase [as 别名]
# 或者: from testtools.testcase import TestCase [as 别名]
def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        # testtools' assertRaises predates unittest's which has
        # support for context-manager
        self.assertRaises = super(TestCase, self).assertRaises 
开发者ID:maas,项目名称:maas,代码行数:7,代码来源:test_user.py

示例5: setUp

# 需要导入模块: from testtools import testcase [as 别名]
# 或者: from testtools.testcase import TestCase [as 别名]
def setUp(self):
        self.assertEqual = super(TestCase, self).assertEqual
        super().setUp()
        self.beginTransaction()
        self.addCleanup(self.endTransaction)
        self.setUpFixtures() 
开发者ID:maas,项目名称:maas,代码行数:8,代码来源:testcase.py


注:本文中的testtools.testcase.TestCase方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。