Run all scenarios according to provided commandline args
(self)
| 475 | return result |
| 476 | |
| 477 | def run(self): |
| 478 | """ |
| 479 | Run all scenarios according to provided commandline args |
| 480 | """ |
| 481 | result = True |
| 482 | if self._args.openscenario: |
| 483 | result = self._run_openscenario() |
| 484 | elif self._args.route: |
| 485 | result = self._run_route() |
| 486 | else: |
| 487 | result = self._run_scenarios() |
| 488 | |
| 489 | print("No more scenarios .... Exiting") |
| 490 | return result |
| 491 | |
| 492 | |
| 493 | def main(): |
no test coverage detected