| 1945 | void TearDown() override |
| 1946 | { |
| 1947 | foreach (const string& realm, realms) { |
| 1948 | // We need to wait in order to ensure that the operation |
| 1949 | // completes before we leave TearDown. Otherwise, we may |
| 1950 | // leak a mock object. |
| 1951 | AWAIT_READY(authentication::unsetAuthenticator(realm)); |
| 1952 | } |
| 1953 | realms.clear(); |
| 1954 | } |
| 1955 |
nothing calls this directly
no test coverage detected