mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-03 17:59:27 +02:00
18 lines
468 B
C++
18 lines
468 B
C++
#include <gtest/gtest.h>
|
|
#include <stdio.h>
|
|
|
|
#include "../Software/src/datalayer/datalayer.h"
|
|
#include "../Software/src/devboard/safety/safety.h"
|
|
#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();
|
|
}
|
|
|
|
void store_settings_equipment_stop(void) {}
|