mock_setup.h 314 B

12345678910111213
  1. #ifndef MOCK_SETUP_H
  2. #define MOCK_SETUP_H
  3. typedef struct{
  4. bool (*write)(uint8_t const TARGET_ADDRESS);
  5. bool (*read) (uint8_t const TARGET_ADDRESS);
  6. } I2C_Mock_Interface;
  7. void test_Controller_SetCurrent();
  8. void test_Controller_GetBatteryMeasurement();
  9. extern I2C_Mock_Interface i2c_mock_interface;
  10. #endif