mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 13:54:34 -06:00
28 lines
704 B
C++
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();
|
|
}
|