chromium/components/device_signals/core/system_signals/win/mock_wmi_client.h

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_DEVICE_SIGNALS_CORE_SYSTEM_SIGNALS_WIN_MOCK_WMI_CLIENT_H_
#define COMPONENTS_DEVICE_SIGNALS_CORE_SYSTEM_SIGNALS_WIN_MOCK_WMI_CLIENT_H_

#include "components/device_signals/core/system_signals/win/wmi_client.h"
#include "testing/gmock/include/gmock/gmock.h"

namespace device_signals {

class MockWmiClient : public WmiClient {
 public:
  MockWmiClient();
  ~MockWmiClient() override;

  MOCK_METHOD(WmiHotfixesResponse, GetInstalledHotfixes, (), (override));
};

}  // namespace device_signals

#endif  // COMPONENTS_DEVICE_SIGNALS_CORE_SYSTEM_SIGNALS_WIN_MOCK_WMI_CLIENT_H_