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


Python TestCase.__init__方法代码示例

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


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

示例1: __init__

# 需要导入模块: from unittest import TestCase [as 别名]
# 或者: from unittest.TestCase import __init__ [as 别名]
def __init__(self, name, redis_conn):
        self.redis_conn = redis_conn
        TestCase.__init__(self, name) 
开发者ID:istresearch,项目名称:scrapy-cluster,代码行数:5,代码来源:online.py

示例2: __init__

# 需要导入模块: from unittest import TestCase [as 别名]
# 或者: from unittest.TestCase import __init__ [as 别名]
def __init__(self, methodName=None):
        TestCase.__init__(self, methodName=methodName)
        self.start_time = 0

        self.logger = logging.getLogger('APITestBase')
        self.logger.setLevel(logging.INFO)

        fh = logging.FileHandler('tablestore_sdk_test.log')
        fh.setLevel(logging.INFO)

        formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
        fh.setFormatter(formatter)

        self.logger.addHandler(fh) 
开发者ID:aliyun,项目名称:aliyun-tablestore-python-sdk,代码行数:16,代码来源:api_test_base.py

示例3: __init__

# 需要导入模块: from unittest import TestCase [as 别名]
# 或者: from unittest.TestCase import __init__ [as 别名]
def __init__(self, message, expectedFields):
            TestCase.__init__(self)
            self.message = message
            self.expectedFields = expectedFields 
开发者ID:itamarst,项目名称:eliot,代码行数:6,代码来源:test_testing.py

示例4: __init__

# 需要导入模块: from unittest import TestCase [as 别名]
# 或者: from unittest.TestCase import __init__ [as 别名]
def __init__(self, *args, **kwargs):
        TestCase.__init__(self, *args, **kwargs)
#        self.tearDown = lambda: subprocess.call("rm -f *.gz *-symbol.json *.params *.onnx", shell=True) 
开发者ID:NVIDIA,项目名称:mxnet_to_onnx,代码行数:5,代码来源:test_convert_lenet5.py

示例5: __init__

# 需要导入模块: from unittest import TestCase [as 别名]
# 或者: from unittest.TestCase import __init__ [as 别名]
def __init__(self, *args, **kwargs):
        TestCase.__init__(self, *args, **kwargs)
        self.configuration = None
        self.enabled = False
        self.mock_data = {}
        self.expected_data = {}
        self.ioc = GreaseContainer()
        self.detect = Detect(self.ioc) 
开发者ID:target,项目名称:grease,代码行数:10,代码来源:test.py

示例6: __init__

# 需要导入模块: from unittest import TestCase [as 别名]
# 或者: from unittest.TestCase import __init__ [as 别名]
def __init__(self, *args, **kwargs):
        TestCase.__init__(self, *args, **kwargs)
        registry = Comparison.register()
        for k, v in registry.items():
            self.addTypeEqualityFunc(k, v) 
开发者ID:holoviz,项目名称:holoviews,代码行数:7,代码来源:comparison.py

示例7: __init__

# 需要导入模块: from unittest import TestCase [as 别名]
# 或者: from unittest.TestCase import __init__ [as 别名]
def __init__(self, arg):
        self.maxDiff = None
        TestCase.__init__(self, arg) 
开发者ID:ernw,项目名称:dizzy,代码行数:5,代码来源:test_interaction.py

示例8: __init__

# 需要导入模块: from unittest import TestCase [as 别名]
# 或者: from unittest.TestCase import __init__ [as 别名]
def __init__(self, *args, **kwargs):
        TestCase.__init__(self, *args, **kwargs)
        if sys.version_info[0] == 2:
            self.assertRegex = self.assertRegexpMatches
        self._init_env() 
开发者ID:aliyun,项目名称:alibabacloud-python-sdk-v2,代码行数:7,代码来源:base.py

示例9: __init__

# 需要导入模块: from unittest import TestCase [as 别名]
# 或者: from unittest.TestCase import __init__ [as 别名]
def __init__(self, *args, **kwargs):
        TestCase.__init__(self, *args, **kwargs)
        alibabacloud.utils._test_flag = True
        if sys.version_info[0] == 2:
            self.assertRegex = self.assertRegexpMatches

        self._sdk_config = self._init_sdk_config()
        self.access_key_id = self._read_key_from_env_or_config("ACCESS_KEY_ID")
        self.access_key_secret = self._read_key_from_env_or_config("ACCESS_KEY_SECRET")
        self.region_id = self._read_key_from_env_or_config("REGION_ID")
        self.ecs = self._get_ecs_resource() 
开发者ID:aliyun,项目名称:alibabacloud-python-sdk-v2,代码行数:13,代码来源:base.py


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