Add tests to make sure batteries aren't renewing liveness on bogus CAN frames

This commit is contained in:
Jonny 2025-09-07 22:50:38 +01:00
parent 69b0d23b45
commit 96b3293023
3 changed files with 84 additions and 0 deletions

View file

@ -6,10 +6,12 @@
#include "../Software/src/devboard/utils/events.h"
void RegisterCanLogTests(void);
void RegisterStillAliveTests(void);
int main(int argc, char** argv) {
testing::InitGoogleTest(&argc, argv);
RegisterCanLogTests();
RegisterStillAliveTests();
return RUN_ALL_TESTS();
}