(self, args)
| 361 | @VerifyAndExit( |
| 362 | "cmd failed, may be invalid input options, please check help") |
| 363 | def do_runtest(self, args): |
| 364 | try: |
| 365 | self.parse_input_runtcs(args) |
| 366 | self.start_marvin() |
| 367 | self.run_test_suites() |
| 368 | return SUCCESS |
| 369 | except Exception as e: |
| 370 | print("==== run test failed: %s ====" % str(e.message())) |
| 371 | return FAILED |
| 372 | |
| 373 | def install_marvin(self): |
| 374 | if self.__csFolder: |
nothing calls this directly
no test coverage detected