(tests)
| 74 | |
| 75 | |
| 76 | def PrintTestSource(tests): |
| 77 | for test in tests: |
| 78 | print("--- begin source: %s ---" % test) |
| 79 | if test.is_source_available(): |
| 80 | print(test.get_source()) |
| 81 | else: |
| 82 | print('(no source available)') |
| 83 | print("--- end source: %s ---" % test) |
| 84 | |
| 85 | |
| 86 | def FormatTime(d): |
nothing calls this directly
no test coverage detected