當前位置: 首頁>>代碼示例>>Python>>正文


Python TestCase.__init__方法代碼示例

本文整理匯總了Python中unittest2.TestCase.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python TestCase.__init__方法的具體用法?Python TestCase.__init__怎麽用?Python TestCase.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在unittest2.TestCase的用法示例。


在下文中一共展示了TestCase.__init__方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from unittest2 import TestCase [as 別名]
# 或者: from unittest2.TestCase import __init__ [as 別名]
    def __init__(self, fieldnames, data_generators):

        TestCase.__init__(self)

        self._data_generators = list(chain((lambda: self._serial_number, time), data_generators))
        self._fieldnames = list(chain(("_serial", "_time"), fieldnames))
        self._recorder = TestRecorder(self)
        self._serial_number = None
開發者ID:malmoore,項目名稱:splunk-sdk-python,代碼行數:10,代碼來源:test_internals_v2.py

示例2: __init__

# 需要導入模塊: from unittest2 import TestCase [as 別名]
# 或者: from unittest2.TestCase import __init__ [as 別名]
    def __init__(self, methodName='runTest'):
        TestCase.__init__(self, methodName=methodName)
        self.maxDiff = None
        self.eq = self.assertEqual
        self.neq = self.assertNotEqual

        self.true = self.assertTrue
        self.false = self.assertFalse

        self.isin = self.assertIn
        self.not_in = self.assertNotIn
        self.almost_eq = self.assertAlmostEqual

        self.isinstance = self.assertIsInstance
        self.not_isinstance = self.assertNotIsInstance

        self.raises = self.assertRaises
        self.items_eq = self.assertItemsEqual
開發者ID:kashirov,項目名稱:ztest,代碼行數:20,代碼來源:__init__.py

示例3: __init__

# 需要導入模塊: from unittest2 import TestCase [as 別名]
# 或者: from unittest2.TestCase import __init__ [as 別名]
 def __init__(self, method="runTest"):
     """Constructor."""
     TestCase.__init__(self, method)
     self.method = method
     self.pdb_script = None
     self.fnull = None
開發者ID:the9ball,項目名稱:.vim,代碼行數:8,代碼來源:test_support.py

示例4: __init__

# 需要導入模塊: from unittest2 import TestCase [as 別名]
# 或者: from unittest2.TestCase import __init__ [as 別名]
 def __init__(self, *args, **kw):
     TestCase.__init__(self, *args, **kw)
     self.maxDiff = None
開發者ID:imclab,項目名稱:laeproxy,代碼行數:5,代碼來源:test.py

示例5: __init__

# 需要導入模塊: from unittest2 import TestCase [as 別名]
# 或者: from unittest2.TestCase import __init__ [as 別名]
 def __init__(self, *args, **kwargs):
     TestCase.__init__(self, *args, **kwargs)
     
     if old_test_case:
         self.setUpClass()
開發者ID:Roguelazer,項目名稱:mysql-workbench,代碼行數:7,代碼來源:ci_test_wb_server_management.py


注:本文中的unittest2.TestCase.__init__方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。