fprime/Svc/SeqDispatcher/test/ut/SeqDispatcherTestMain.cpp
Thomas Boyer-Chammard c69ff72110
Format Svc and add to CI (#3978)
* Format Svc and add to CI

* Fix comlogger include

* fix assert UTs

* Fix static analysis warning

* formatting
2025-08-04 16:21:47 -07:00

21 lines
505 B
C++

// ----------------------------------------------------------------------
// TestMain.cpp
// ----------------------------------------------------------------------
#include "SeqDispatcherTester.hpp"
TEST(Nominal, testDispatch) {
Svc::SeqDispatcherTester tester;
tester.testDispatch();
}
TEST(Nominal, testLogStatus) {
Svc::SeqDispatcherTester tester;
tester.testLogStatus();
}
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}