1 // Copyright 2015 The Weave 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 LIBWEAVE_INCLUDE_WEAVE_PROVIDER_TEST_MOCK_BLUETOOTH_H_ 6 #define LIBWEAVE_INCLUDE_WEAVE_PROVIDER_TEST_MOCK_BLUETOOTH_H_ 7 8 #include <weave/provider/bluetooth.h> 9 10 namespace weave { 11 namespace provider { 12 namespace test { 13 14 class MockBluetooth : public Bluetooth { 15 public: 16 }; 17 18 } // namespace test 19 } // namespace provider 20 } // namespace weave 21 22 #endif // LIBWEAVE_INCLUDE_WEAVE_PROVIDER_TEST_MOCK_BLUETOOTH_H_ 23