GCC Code Coverage Report


Directory: ./
Coverage: low: ≥ 0% medium: ≥ 75.0% high: ≥ 90.0%
Coverage Exec / Excl / Total
Lines: 40.0% 4 / 0 / 10
Functions: 40.0% 2 / 0 / 5
Branches: -% 0 / 0 / 0
Decisions: -% 0 / - / 0

unit_tests/global_mocks.cpp
Line Branch Decision Exec Source
1 /**
2 * @file global_mocks.cpp
3 */
4
5 #include "pch.h"
6
7 #include "trigger_central.h"
8
9 bool verboseMode = false;
10
11 531078 efitimems_t getTimeNowMs() {
12 531078 return US2MS(getTimeNowUs());
13 }
14
15 void initLogging(LoggingWithStorage *logging, const char *name) {
16 }
17
18 void onCliCaseError(const char *token) {
19 }
20
21 4 void onCliDuplicateError(const char *token) {
22 4 }
23
24 void onCliOverflowError() {
25 }
26