blob: 7964e8091bacae326abcb3ec48ed1b04fbbb02b8 [file] [log] [blame]
// Copyright 2016 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 LOGIN_MANAGER_MOCK_VPD_PROCESS_H_
#define LOGIN_MANAGER_MOCK_VPD_PROCESS_H_
#include <string>
#include <vector>
#include <gmock/gmock.h>
#include "login_manager/vpd_process.h"
#include "login_manager/vpd_process_impl.h"
namespace login_manager {
class SystemUtils;
class MockVpdProcess : public VpdProcess {
public:
MockVpdProcess() : VpdProcess() {}
MOCK_METHOD4(RunInBackground, bool(const std::vector<std::string>& flags,
const std::vector<int>& values,
bool is_enrolled,
const PolicyService::Completion&
completion));
};
} // namespace login_manager
#endif // LOGIN_MANAGER_MOCK_VPD_PROCESS_H_