18 lines
483 B
C++

// ======================================================================
// \title EmptyTestMain.cpp
// \author Generated by fpp-to-cpp
// \brief cpp file for Empty component test harness implementation class
// ======================================================================
#include "EmptyTester.hpp"
TEST(Nominal, toDo) {
EmptyTester tester;
tester.toDo();
}
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}