fprime/Ref/BlockDriver/test/ut/BlockDriverTestMain.cpp
2025-09-10 15:02:07 -07:00

28 lines
704 B
C++

// ======================================================================
// \title BlockDriverTestMain.cpp
// \author root
// \brief cpp file for BlockDriver component test main function
// ======================================================================
#include "BlockDriverTester.hpp"
TEST(Nominal, testDataLoopBack) {
Ref::BlockDriverTester tester;
tester.testDataLoopBack();
}
TEST(Nominal, testPing) {
Ref::BlockDriverTester tester;
tester.testPing();
}
TEST(Nominal, testCycleIncrement) {
Ref::BlockDriverTester tester;
tester.testCycleIncrement();
}
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}