- #ifndef MOCK_SETUP_H
- #define MOCK_SETUP_H
- typedef struct{
- bool (*write)(uint8_t const TARGET_ADDRESS);
- bool (*read) (uint8_t const TARGET_ADDRESS);
- } I2C_Mock_Interface;
- void test_Controller_SetCurrent();
- void test_Controller_GetBatteryMeasurement();
- extern I2C_Mock_Interface i2c_mock_interface;
- #endif
|