shill: Add mock and unit test skeleton for WiMAX device and service.

BUG=chrome-os-partner:9600
TEST=Build and run unit tests.

Change-Id: I2fe534010ca2645856ece55a9c063bf820c8473b
Reviewed-on: https://gerrit.chromium.org/gerrit/22684
Tested-by: Ben Chan <benchan@chromium.org>
Commit-Ready: Ben Chan <benchan@chromium.org>
Reviewed-by: Darin Petkov <petkov@chromium.org>
diff --git a/mock_wimax_service.h b/mock_wimax_service.h
new file mode 100644
index 0000000..b37779f
--- /dev/null
+++ b/mock_wimax_service.h
@@ -0,0 +1,29 @@
+// Copyright (c) 2012 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 SHILL_MOCK_WIMAX_SERVICE_H_
+#define SHILL_MOCK_WIMAX_SERVICE_H_
+
+#include <gmock/gmock.h>
+
+#include "shill/wimax_service.h"
+
+namespace shill {
+
+class MockWiMaxService : public WiMaxService {
+ public:
+  MockWiMaxService(ControlInterface *control,
+                   EventDispatcher *dispatcher,
+                   Metrics *metrics,
+                   Manager *manager,
+                   const WiMaxRefPtr &wimax);
+  virtual ~MockWiMaxService();
+
+ private:
+  DISALLOW_COPY_AND_ASSIGN(MockWiMaxService);
+};
+
+}  // namespace shill
+
+#endif  // SHILL_MOCK_WIMAX_SERVICE_H_