| 87 | void TearDown() override |
| 88 | { |
| 89 | foreach (const string& realm, realms) { |
| 90 | // We need to wait in order to ensure that the operation completes before |
| 91 | // we leave `TearDown`. Otherwise, we may leak a mock object. |
| 92 | AWAIT_READY(unsetAuthenticator(realm)); |
| 93 | } |
| 94 | |
| 95 | realms.clear(); |
| 96 |
nothing calls this directly
no test coverage detected