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 
19 #include "hci/acl_manager_mock.h"
20 #include "hci/controller_interface_mock.h"
21 #include "hci/distance_measurement_manager_mock.h"
22 #include "hci/hci_layer_mock.h"
23 #include "hci/le_advertising_manager_mock.h"
24 #include "hci/le_scanning_manager_mock.h"
25 #include "shim/dumpsys.h"
26 
27 namespace bluetooth {
28 namespace hci {
29 namespace testing {
30 
31 extern MockAclManager* mock_acl_manager_;
32 extern MockControllerInterface* mock_controller_;
33 extern std::function<shim::Dumpsys*()> shim_dumpsys_;
34 extern 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 
40 }  // namespace testing
41 }  // namespace hci
42 }  // namespace bluetooth
43