(self, message)
| 75 | self.__test_ids = [] |
| 76 | |
| 77 | def __assertionFailure(self, message): |
| 78 | BoostBuild.annotation("failure", "Internal test assertion failure " |
| 79 | "- %s" % message) |
| 80 | self.__tester.fail_test(1) |
| 81 | |
| 82 | def __call__(self, test_id, env, extra_args=None, *args, **kwargs): |
| 83 | if env == "" and not canSetEmptyEnvironmentVariable: |
no test coverage detected