1 /*
2  * Copyright 2023 Google LLC
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef TEST_DRIVERS_SENSOR_ACCEL_INCLUDE_FIXTURE_H_
8 #define TEST_DRIVERS_SENSOR_ACCEL_INCLUDE_FIXTURE_H_
9 
10 #include <zephyr/device.h>
11 #include <zephyr/drivers/emul.h>
12 
13 struct bmi160_fixture {
14 	const struct device *dev_spi;
15 	const struct device *dev_i2c;
16 	const struct emul *emul_spi;
17 	const struct emul *emul_i2c;
18 };
19 
20 #endif /* TEST_DRIVERS_SENSOR_ACCEL_INCLUDE_FIXTURE_H_ */
21