Home | History | Annotate | Download | only in cli-tests

Lines Matching defs:launch

220     2. Launch the test case with :TestCase.launch():.
222 not wait for completion. So you could launch multiple test
228 :TestCase.run(): is also provided which combines the launch & analyze
253 def launch(self) -> None:
255 Launch the test case as a subprocess, but do not block on completion.
263 Must be called after :TestCase.launch():. Joins the test subprocess and
275 """Shorthand for combining both :TestCase.launch(): and :TestCase.analyze():."""
276 self.launch()
301 """Launch the test subprocess, but do not join it."""