(self, test_id)
| 96 | _env_set(env_name, previous_env) |
| 97 | |
| 98 | def __registerTestId(self, test_id): |
| 99 | if test_id in self.__test_ids: |
| 100 | self.__assertionFailure("Multiple test cases encountered " |
| 101 | "using the same test id '%s'." % test_id) |
| 102 | self.__test_ids.append(test_id) |
| 103 | |
| 104 | test = LocalTester(t) |
| 105 |
no test coverage detected