示例#1
0
 def setUp(self):
     sys.argv = sys.argv[:1]
     ConfigurationManager.destroySingleton()
     path = os.path.realpath("config/ipc")
     self.eo = ExecutionOrganiser()
     self.eo.bindInterface()
     ConfigurationManager(cwd=path)
示例#2
0
 def tearDown(self):
     ConfigurationManager.destroySingleton()
     for api in self.apis:
         try:
             api.teardown()
         except:
             pass
示例#3
0
 def tearDown(self):
     ExecutionOrganiser.destroySingleton()
     ConfigurationManager.destroySingleton()
示例#4
0
 def setUp(self):
     ConfigurationManager.destroySingleton()
     self.eFormats = _makeFormats()
示例#5
0
 def tearDown(self):
     ConfigurationManager.destroySingleton()
     for api in self.apis:
         try:    api.teardown()
         except: pass