1 /* 2 * Copyright 2021 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #include <functional> 18 #include <memory> 19 20 #include "hci/acl_manager_mock.h" 21 #include "hci/controller_interface_mock.h" 22 #include "hci/distance_measurement_manager_mock.h" 23 #include "hci/hci_layer_mock.h" 24 #include "hci/le_advertising_manager_mock.h" 25 #include "hci/le_scanning_manager_mock.h" 26 #include "storage/storage_module.h" 27 28 namespace bluetooth { 29 namespace hci { 30 namespace testing { 31 32 extern std::unique_ptr<MockAclManager> mock_acl_manager_; 33 extern std::unique_ptr<MockControllerInterface> mock_controller_; 34 extern std::unique_ptr<MockHciLayer> mock_hci_layer_; 35 extern os::Handler* mock_gd_shim_handler_; 36 extern MockLeAdvertisingManager* mock_le_advertising_manager_; 37 extern MockLeScanningManager* mock_le_scanning_manager_; 38 extern MockDistanceMeasurementManager* mock_distance_measurement_manager_; 39 extern storage::StorageModule* mock_storage_; 40 41 } // namespace testing 42 } // namespace hci 43 } // namespace bluetooth 44