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


Python ConfigManager.get_framework_config方法代码示例

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


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

示例1: test_get_config_framework

# 需要导入模块: from config.configmanager import ConfigManager [as 别名]
# 或者: from config.configmanager.ConfigManager import get_framework_config [as 别名]
 def test_get_config_framework(self):
     """
     Tests the framework config
     :return: Tests results
     """
     data = ConfigManager.get_framework_config()
     self.assertEqual(len(data), 6, "framework_config.yml: Wrong size of the List")
开发者ID:haggi,项目名称:TestFramework,代码行数:9,代码来源:test_AP_Yaml.py

示例2: test_get_config_framework

# 需要导入模块: from config.configmanager import ConfigManager [as 别名]
# 或者: from config.configmanager.ConfigManager import get_framework_config [as 别名]
 def test_get_config_framework(self):
     """
     Tests the framework config
     :return: Tests results
     """
     data = ConfigManager.get_framework_config()
     self.assertEqual(True, (data is not None), "Wrong data")
开发者ID:PumucklOnTheAir,项目名称:TestFramework,代码行数:9,代码来源:test_AP_Yaml.py

示例3: test_check

# 需要导入模块: from config.configmanager import ConfigManager [as 别名]
# 或者: from config.configmanager.ConfigManager import get_framework_config [as 别名]
 def test_check(self):
     """
     Test config vs. schema
     :return: Test results
     """
     data = ConfigManager.get_framework_config()
     result = ConfigManager.check(data)
     self.assertEqual(True, result, "Wrong schema or data")
开发者ID:PumucklOnTheAir,项目名称:TestFramework,代码行数:10,代码来源:test_AP_Yaml.py

示例4: test_set_config_path

# 需要导入模块: from config.configmanager import ConfigManager [as 别名]
# 或者: from config.configmanager.ConfigManager import get_framework_config [as 别名]
    def test_set_config_path(self):
        """
        Tests to set the config path
        :return: Tests results
        """
        base_dir = path.dirname(path.dirname(__file__))  # This is your Project Root
        config_path = path.join(base_dir, 'framework_unittests/configs/config_no_vlan')
        ConfigManager.set_config_path(config_path)
        self.assertEqual(ConfigManager.CONFIG_PATH, config_path, "Wrong path")

        data = ConfigManager.get_framework_config()
        self.assertEqual((data is not None), True, "No data")

        config_path = path.join(base_dir, 'config')  # Join Project Root with config

        ConfigManager.set_config_path(config_path)
        self.assertEqual(ConfigManager.CONFIG_PATH, config_path, "Wrong path")
开发者ID:haggi,项目名称:TestFramework,代码行数:19,代码来源:test_AP_Yaml.py


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