(err_msg=None)
| 109 | |
| 110 | @staticmethod |
| 111 | def usage(err_msg=None): |
| 112 | print("\nERROR: ") |
| 113 | if err_msg: |
| 114 | print(err_msg) |
| 115 | print("\nUsage: unity_test_summary.py result_file_directory/ root_path/") |
| 116 | print(" result_file_directory - The location of your results files.") |
| 117 | print(" Defaults to current directory if not specified.") |
| 118 | print(" Should end in / if specified.") |
| 119 | print(" root_path - Helpful for producing more verbose output if using relative paths.") |
| 120 | sys.exit(1) |
| 121 | |
| 122 | |
| 123 | if __name__ == '__main__': |
no test coverage detected