| 58 | void TearDown() override |
| 59 | { |
| 60 | foreach (const string& realm, realms) { |
| 61 | // We need to wait in order to ensure that the operation |
| 62 | // completes before we leave TearDown. Otherwise, we may |
| 63 | // leak a mock object. |
| 64 | AWAIT_READY(authentication::unsetAuthenticator(realm)); |
| 65 | } |
| 66 | realms.clear(); |
| 67 | } |
| 68 |
nothing calls this directly
no test coverage detected