本文整理汇总了Python中test.test_support.EnvironmentVarGuard.setdefault方法的典型用法代码示例。如果您正苦于以下问题:Python EnvironmentVarGuard.setdefault方法的具体用法?Python EnvironmentVarGuard.setdefault怎么用?Python EnvironmentVarGuard.setdefault使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类test.test_support.EnvironmentVarGuard
的用法示例。
在下文中一共展示了EnvironmentVarGuard.setdefault方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Test_example_dymola_runSimulation
# 需要导入模块: from test.test_support import EnvironmentVarGuard [as 别名]
# 或者: from test.test_support.EnvironmentVarGuard import setdefault [as 别名]
class Test_example_dymola_runSimulation(unittest.TestCase):
"""
This class contains the unit tests for
:mod:`buildingspy.examples`.
"""
def setUp(self):
''' Ensure that environment variables that are needed to run
the tests are set
'''
self.env = EnvironmentVarGuard()
# Set MODELICALIBRARY which is required to run
# runSimulationTranslated.py
self.env.setdefault("MODELICALIBRARY", "/usr/local/Modelica/Library")
def test_runSimulation(self):
'''
Tests the :mod:`buildingspy/examples/dymola/runSimulation`
function.
'''
import buildingspy.examples.dymola.runSimulation as s
s.main()
def test_runSimulationTranslated(self):
'''
Tests the :mod:`buildingspy/examples/dymola/runSimulationTranslated`
function.
'''
import buildingspy.examples.dymola.runSimulationTranslated as s
s.main()
def test_plotResult(self):
'''
Tests the :mod:`buildingspy/examples/dymola/plotResult`
function.
'''
import os
import buildingspy.examples.dymola.plotResult as s
s.main()
# Remove the generated plot files
os.remove("plot.pdf")
os.remove("plot.png")