Unity 8
unity8.fixture_setup.LaunchMockIndicatorService Class Reference

Inherits Fixture.

Public Member Functions

def __init__
 
def setUp (self)
 
def launch_service (self)
 
def stop_service (self)
 
def ensure_service_not_running (self)
 

Public Attributes

 action_delay
 
 ensure_not_running
 
 application_proxy
 

Detailed Description

Fixture to launch the indicator test service.

Definition at line 291 of file fixture_setup.py.

Constructor & Destructor Documentation

def unity8.fixture_setup.LaunchMockIndicatorService.__init__ (   self,
  action_delay,
  ensure_not_running = True 
)
Initialize an instance.

:param action_delay: The delay to use when activating actions.
  Measured in milliseconds. Value of -1 will result in infinite delay.
:type action_delay: An integer.
:param boolean ensure_not_running: Make sure service is not running

Definition at line 295 of file fixture_setup.py.

295  def __init__(self, action_delay, ensure_not_running=True):
296  """Initialize an instance.
297 
298  :param action_delay: The delay to use when activating actions.
299  Measured in milliseconds. Value of -1 will result in infinite delay.
300  :type action_delay: An integer.
301  :param boolean ensure_not_running: Make sure service is not running
302 
303  """
304  super(LaunchMockIndicatorService, self).__init__()
305  self.action_delay = action_delay
306  self.ensure_not_running = ensure_not_running
307 

The documentation for this class was generated from the following file: