blob: ef75d405dc1e0b9726f55c312957490d970ffc25 [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_DEVICE_REAUTH_MOCK_BIOMETRIC_AUTHENTICATOR_H_
#define COMPONENTS_DEVICE_REAUTH_MOCK_BIOMETRIC_AUTHENTICATOR_H_
#include "base/callback.h"
#include "components/device_reauth/biometric_authenticator.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace device_reauth {
// Mocked BiometricAuthenticator used by unit tests.
class MockBiometricAuthenticator : public BiometricAuthenticator {
public:
MockBiometricAuthenticator();
MOCK_METHOD(BiometricsAvailability,
CanAuthenticate,
(BiometricAuthRequester),
(override));
MOCK_METHOD(void,
Authenticate,
(BiometricAuthRequester, AuthenticateCallback),
(override));
MOCK_METHOD(void, Cancel, (BiometricAuthRequester), (override));
private:
~MockBiometricAuthenticator() override;
};
} // namespace device_reauth
#endif // COMPONENTS_DEVICE_REAUTH_MOCK_BIOMETRIC_AUTHENTICATOR_H_