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


Python IbmDbTestFunctions.assert_expect方法代码示例

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


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

示例1: test_142_BindParamSelectStmtMultipleParams_02

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_142_BindParamSelectStmtMultipleParams_02(self):
   obj = IbmDbTestFunctions()
   obj.assert_expect(self.run_test_142)
开发者ID:IBMAmar,项目名称:python-ibmdb,代码行数:5,代码来源:test_142_BindParamSelectStmtMultipleParams_02.py

示例2: test_createDropDB

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_createDropDB(self):
     obj = IbmDbTestFunctions()
     if (obj.server.DBMS_NAME == "DB2") or (obj.server.DBMS_NAME[0:3] != "DB2"):
         raise unittest.SkipTest("createdb, dropdb not Supported")
     obj.assert_expect(self.run_test_createDropDB)
开发者ID:jsmelser,项目名称:python-ibmdb,代码行数:7,代码来源:test_createDropDB.py

示例3: test_221_100PersistentConns

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_221_100PersistentConns(self):
   obj = IbmDbTestFunctions()
   obj.assert_expect(self.run_test_221)
开发者ID:kadler,项目名称:python-ibmdb-1,代码行数:5,代码来源:test_221_100PersistentConns.py

示例4: test_131_PrepareExecuteSelectStatementParams

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_131_PrepareExecuteSelectStatementParams(self):
   obj = IbmDbTestFunctions()
   obj.assert_expect(self.run_test_131)
开发者ID:IBMAmar,项目名称:python-ibmdb,代码行数:5,代码来源:test_131_PrepareExecuteSelectStatementParams.py

示例5: test_044_FetchTupleMany_04

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_044_FetchTupleMany_04(self):
   obj = IbmDbTestFunctions()
   obj.assert_expect(self.run_test_044)
开发者ID:sasa-tomic,项目名称:python-ibmdb,代码行数:5,代码来源:test_044_FetchTupleMany_04.py

示例6: test_008_ColumnInfo

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_008_ColumnInfo(self):
   obj = IbmDbTestFunctions()
   obj.assert_expect(self.run_test_008)
开发者ID:OpenPOWER-BigData,项目名称:HDP-hue,代码行数:5,代码来源:test_008_ColumnInfo.py

示例7: test_6561_InsertNULLValues

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_6561_InsertNULLValues(self):
   obj = IbmDbTestFunctions()
   obj.assert_expect(self.run_test_6561)
开发者ID:sasa-tomic,项目名称:python-ibmdb,代码行数:5,代码来源:test_6561_InsertNULLValues.py

示例8: test_034_FetchAssoc

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_034_FetchAssoc(self):
   obj = IbmDbTestFunctions()
   obj.assert_expect(self.run_test_034)
开发者ID:sasa-tomic,项目名称:python-ibmdb,代码行数:5,代码来源:test_034_FetchAssoc.py

示例9: test_162_FetchBothNestedSelects_02

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_162_FetchBothNestedSelects_02(self):
   obj = IbmDbTestFunctions()
   obj.assert_expect(self.run_test_162)
开发者ID:sasa-tomic,项目名称:python-ibmdb,代码行数:5,代码来源:test_162_FetchBothNestedSelects_02.py

示例10: test_031_ResultIndexPosition

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_031_ResultIndexPosition(self):
    obj = IbmDbTestFunctions()
    obj.assert_expect(self.run_test_031)
开发者ID:sasa-tomic,项目名称:python-ibmdb,代码行数:5,代码来源:test_031_ResultIndexPosition.py

示例11: test_022_RollbackInsert

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_022_RollbackInsert(self):
   obj = IbmDbTestFunctions()
   obj.assert_expect(self.run_test_022)
开发者ID:sasa-tomic,项目名称:python-ibmdb,代码行数:5,代码来源:test_022_RollbackInsert.py

示例12: test_035_FetchRow_01

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_035_FetchRow_01(self):
   obj = IbmDbTestFunctions()
   obj.assert_expect(self.run_test_035)
开发者ID:IBMAmar,项目名称:python-ibmdb,代码行数:5,代码来源:test_035_FetchRow_01.py

示例13: test_071_CloseSuccess

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_071_CloseSuccess(self):
   obj = IbmDbTestFunctions()
   obj.assert_expect(self.run_test_071)
开发者ID:kadler,项目名称:python-ibmdb-1,代码行数:5,代码来源:test_071_CloseSuccess.py

示例14: test_115_NumericTest_02

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_115_NumericTest_02(self):
   obj = IbmDbTestFunctions()
   obj.assert_expect(self.run_test_115)
开发者ID:sasa-tomic,项目名称:python-ibmdb,代码行数:5,代码来源:test_115_NumericTest_02.py

示例15: test_144_BindParamInsertStmtPARAM_FILE

# 需要导入模块: from testfunctions import IbmDbTestFunctions [as 别名]
# 或者: from testfunctions.IbmDbTestFunctions import assert_expect [as 别名]
 def test_144_BindParamInsertStmtPARAM_FILE(self):
   obj = IbmDbTestFunctions()
   obj.assert_expect(self.run_test_144)
开发者ID:kadler,项目名称:python-ibmdb-1,代码行数:5,代码来源:test_144_BindParamInsertStmtPARAM_FILE.py


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