rusefi/unit_tests/global_mocks.cpp

31 lines
423 B
C++
Raw Normal View History

2021-12-03 21:46:34 -08:00
/**
* @file global_mocks.cpp
*/
2021-05-07 14:43:24 -07:00
#include "pch.h"
2021-05-07 14:43:24 -07:00
#include "trigger_central.h"
bool verboseMode = false;
2023-11-01 15:14:10 -07:00
efitimems_t mockTimeMs = 0;
efitimems_t getTimeNowMs(void) {
return mockTimeMs;
}
2021-05-07 14:43:24 -07:00
void initLogging(LoggingWithStorage *logging, const char *name) {
}
void setBoardConfigOverrides() {
}
void onCliCaseError(const char *token) {
}
void onCliDuplicateError(const char *token) {
}
void onCliOverflowError() {
}