blob: 58c2bd8d5f694da3f2cf158e61c25262f007490d [file]
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UPDATE_ENGINE_COMMON_MOCK_CALL_WRAPPER_H_
#define UPDATE_ENGINE_COMMON_MOCK_CALL_WRAPPER_H_
#include <gmock/gmock.h>
#include "update_engine/common/call_wrapper_interface.h"
namespace chromeos_update_engine {
class MockCallWrapper : public CallWrapperInterface {
public:
MOCK_METHOD(std::optional<int64_t>,
AmountOfFreeDiskSpace,
(const base::FilePath& path),
(override));
};
} // namespace chromeos_update_engine
#endif // UPDATE_ENGINE_COMMON_MOCK_CALL_WRAPPER_H_