Inherits Fixture.
|
def | __init__ (self, binary_path, variables) |
|
def | setUp (self) |
|
def | restart_lomiri (self) |
|
def | restart_lomiri_with_testability (self) |
|
def | stop_lomiri (self) |
|
Fixture to launch Lomiri with testability.
:ivar lomiri_proxy: The Autopilot proxy object for the Lomiri shell.
Definition at line 155 of file fixture_setup.py.
◆ __init__()
def lomiri.fixture_setup.RestartLomiriWithTestability.__init__ |
( |
|
self, |
|
|
|
binary_path, |
|
|
|
variables |
|
) |
| |
Initialize the fixture instance.
:param str binary_path: The path to the Dash app binary.
:param cli_arguments: The arguments to pass when launching the
:param variables: The variables to use when launching the app.
:type variables: A dictionary.
Definition at line 165 of file fixture_setup.py.
165 def __init__(self, binary_path, variables):
166 """Initialize the fixture instance.
168 :param str binary_path: The path to the Dash app binary.
169 :param cli_arguments: The arguments to pass when launching the
170 :param variables: The variables to use when launching the app.
171 :type variables: A dictionary.
175 self.binary_path = binary_path
176 self.variables = variables
◆ setUp()
def lomiri.fixture_setup.RestartLomiriWithTestability.setUp |
( |
|
self | ) |
|
Restart lomiri with testability when the fixture is used.
Definition at line 178 of file fixture_setup.py.
179 """Restart lomiri with testability when the fixture is used."""
181 self.addCleanup(self.stop_lomiri)
182 self.restart_lomiri()
The documentation for this class was generated from the following file: