mirror of
https://github.com/nasa/fprime.git
synced 2025-12-12 18:31:06 -06:00
* Format Svc and add to CI * Fix comlogger include * fix assert UTs * Fix static analysis warning * formatting
21 lines
505 B
C++
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();
|
|
}
|