blob: 58baf917add263aa2b97c75df866ce22f6aa9685 [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:
23 MockProfile(ControlInterface *control_interface, GLib *glib);
24 virtual ~MockProfile();
25
26 MOCK_METHOD1(MoveToActiveProfile, bool(const std::string &));
27
28 private:
29 DISALLOW_COPY_AND_ASSIGN(MockProfile);
30};
31
32} // namespace shill
33
34#endif // SHILL_MOCK_PROFILE_