blob: 6d491f68d2a453fb0ee7e9b4324de05b9f71e922 [file] [log] [blame]
Chris Masone7aa5f902011-07-11 11:13:35 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_MOCK_PROFILE_
6#define SHILL_MOCK_PROFILE_
7
8#include <string>
9
10#include <gmock/gmock.h>
11
12#include "shill/profile.h"
13
14
15namespace shill {
16
17class ControlInterface;
18class GLib;
19class Manager;
20
21class MockProfile : public Profile {
22 public:
Chris Masone2ae797d2011-08-23 20:41:00 -070023 MockProfile(ControlInterface *control, GLib *glib, Manager *manager);
24 MockProfile(ControlInterface *control,
Chris Masone7df0c672011-07-15 10:24:54 -070025 GLib *glib,
26 Manager *manager,
27 const std::string &identifier);
Chris Masone7aa5f902011-07-11 11:13:35 -070028 virtual ~MockProfile();
29
Chris Masone7aa5f902011-07-11 11:13:35 -070030 private:
31 DISALLOW_COPY_AND_ASSIGN(MockProfile);
32};
33
34} // namespace shill
35
36#endif // SHILL_MOCK_PROFILE_