1 /**
2  * @file testing.h
3  * @brief Internal API for Bluetooth testing.
4  */
5 
6 /*
7  * Copyright (c) 2017 Intel Corporation
8  *
9  * SPDX-License-Identifier: Apache-2.0
10  */
11 
12 #if defined(CONFIG_BT_MESH)
13 void bt_test_mesh_net_recv(u8_t ttl, u8_t ctl, u16_t src, u16_t dst,
14 			   const void *payload, size_t payload_len);
15 void bt_test_mesh_model_bound(u16_t addr, struct bt_mesh_model *model,
16 			      u16_t key_idx);
17 void bt_test_mesh_model_unbound(u16_t addr, struct bt_mesh_model *model,
18 				u16_t key_idx);
19 void bt_test_mesh_prov_invalid_bearer(u8_t opcode);
20 void bt_test_mesh_trans_incomp_timer_exp(void);
21 #endif /* CONFIG_BT_MESH */
22