blob: 86cb3a1e2f6b44da1ed47437724f5455f9ce6cec [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 RMAD_SYSTEM_MOCK_RUNTIME_PROBE_CLIENT_H_
#define RMAD_SYSTEM_MOCK_RUNTIME_PROBE_CLIENT_H_
#include "rmad/system/runtime_probe_client.h"
#include <set>
#include <gmock/gmock.h>
#include <runtime_probe/proto_bindings/runtime_probe.pb.h>
namespace rmad {
class MockRuntimeProbeClient : public RuntimeProbeClient {
public:
MockRuntimeProbeClient() = default;
MockRuntimeProbeClient(const MockRuntimeProbeClient&) = delete;
MockRuntimeProbeClient& operator=(const MockRuntimeProbeClient&) = delete;
~MockRuntimeProbeClient() override = default;
MOCK_METHOD(bool, ProbeCategories, (std::set<RmadComponent>*), (override));
};
} // namespace rmad
#endif // RMAD_SYSTEM_MOCK_RUNTIME_PROBE_CLIENT_H_