1 /* 2 * Copyright 2023 Google LLC 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/device.h> 8 #include <zephyr/drivers/fuel_gauge.h> 9 10 struct sbs_gauge_new_api_fixture { 11 const struct device *dev; 12 const struct emul *sbs_fuel_gauge; 13 const struct fuel_gauge_driver_api *api; 14 }; 15