def setUpClass(cls):
     #  starts the IPC server in another(!) process
     cls.proc = Process(target=ServerTestCaseVLAN.serverStartWithParams,
                        args=()).start()
     block_until_server_is_online()
示例#2
0
 def setUpClass(cls):
     #  starts the IPC server in another(!) process
     cls.proc = Process(target=TestCLItoServerConnection.serverStartWithParams, args=()).start()
     block_until_server_is_online()
 def setUpClass(cls):
     #  starts the IPC server in another(!) process
     cls.proc = Process(target=ServerTestCaseVLAN.serverStartWithParams, args=()).start()
     block_until_server_is_online()
 def setUpClass(cls):
     #  starts the IPC server in another(!) process
     cls.proc = Process(target=TestCLItoServerConnection.serverStartWithParams, args=()).start()
     block_until_server_is_online()
 def setUpClass(cls):
     if not server_already_started:
         #  starts the IPC server in another(!) process
         cls.proc = Process(target=ServerAlive.serverStartWithParams, args=()).start()
         block_until_server_is_online()