| 59 | public: |
| 60 | TestPasswordRequestHandler(std::string &password) : password(password) {} |
| 61 | void SendResponse() override {} |
| 62 | void AskUserForPassword(std::shared_ptr<NetworkAuthenticationPasswordRequest> request) override { request->Reply(this->password); } |
| 63 | }; |
| 64 |
no outgoing calls
no test coverage detected