| 73 | void TearDown() override |
| 74 | { |
| 75 | foreach (const std::string& realm, realms) { |
| 76 | // We need to wait in order to ensure that the operation completes before |
| 77 | // we leave `TearDown`. Otherwise, we may leak a mock object. |
| 78 | AWAIT_READY(unsetAuthenticator(realm)); |
| 79 | } |
| 80 | |
| 81 | realms.clear(); |
| 82 |
nothing calls this directly
no test coverage detected