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.cc b/mock_wimax_service.cc
new file mode 100644
index 0000000..35eb293
--- /dev/null
+++ b/mock_wimax_service.cc
@@ -0,0 +1,18 @@
+// 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.
+
+#include "shill/mock_wimax_service.h"
+
+namespace shill {
+
+MockWiMaxService::MockWiMaxService(ControlInterface *control,
+                                   EventDispatcher *dispatcher,
+                                   Metrics *metrics,
+                                   Manager *manager,
+                                   const WiMaxRefPtr &wimax)
+    : WiMaxService(control, dispatcher, metrics, manager, wimax) {}
+
+MockWiMaxService::~MockWiMaxService() {}
+
+}  // namespace shill