blob: a3404f58ec4d6ddad5bd46a2001fd4413cf6dabb [file] [log] [blame]
// Copyright 2021 The Chromium OS 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 MINIOS_MOCK_RECOVERY_INSTALLER_H_
#define MINIOS_MOCK_RECOVERY_INSTALLER_H_
#include <gmock/gmock.h>
#include "minios/recovery_installer_interface.h"
namespace minios {
class MockRecoveryInstaller : public RecoveryInstallerInterface {
public:
MockRecoveryInstaller() = default;
~MockRecoveryInstaller() = default;
MockRecoveryInstaller(const MockRecoveryInstaller&) = delete;
MockRecoveryInstaller& operator=(const MockRecoveryInstaller&) = delete;
MOCK_METHOD(bool, RepartitionDisk, (), (override));
};
} // namespace minios
#endif // MINIOS_MOCK_RECOVERY_INSTALLER_H_