aboutsummaryrefslogtreecommitdiffstats
path: root/brillo/udev/mock_udev_list_entry.h
blob: 255b6e26b3cbf286a02c34ecd6ee02a82c695676 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright (c) 2013 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 LIBBRILLO_BRILLO_UDEV_MOCK_UDEV_LIST_ENTRY_H_
#define LIBBRILLO_BRILLO_UDEV_MOCK_UDEV_LIST_ENTRY_H_

#include <memory>

#include <brillo/brillo_export.h>
#include <brillo/udev/udev_list_entry.h>
#include <gmock/gmock.h>

namespace brillo {

class BRILLO_EXPORT MockUdevListEntry : public UdevListEntry {
 public:
  MockUdevListEntry() = default;
  ~MockUdevListEntry() override = default;

  MOCK_METHOD(std::unique_ptr<UdevListEntry>, GetNext, (), (const, override));
  MOCK_METHOD(std::unique_ptr<UdevListEntry>,
              GetByName,
              (const char*),
              (const, override));
  MOCK_METHOD(const char*, GetName, (), (const, override));
  MOCK_METHOD(const char*, GetValue, (), (const, override));

 private:
  DISALLOW_COPY_AND_ASSIGN(MockUdevListEntry);
};

}  // namespace brillo

#endif  // LIBBRILLO_BRILLO_UDEV_MOCK_UDEV_LIST_ENTRY_H_