fpp/compiler/tools/fpp-to-cpp/test/component/test-impl/PassiveTestTester.ref.cpp
2025-04-09 15:41:32 -06:00

37 lines
988 B
C++
Vendored

// ======================================================================
// \title PassiveTestTester.cpp
// \author [user name]
// \brief cpp file for PassiveTest component test harness implementation class
// ======================================================================
#include "PassiveTestTester.hpp"
// ----------------------------------------------------------------------
// Construction and destruction
// ----------------------------------------------------------------------
PassiveTestTester ::
PassiveTestTester() :
PassiveTestGTestBase("PassiveTestTester", PassiveTestTester::MAX_HISTORY_SIZE),
component(paramDelegateRef, "PassiveTest")
{
this->initComponents();
this->connectPorts();
}
PassiveTestTester ::
~PassiveTestTester()
{
}
// ----------------------------------------------------------------------
// Tests
// ----------------------------------------------------------------------
void PassiveTestTester ::
toDo()
{
// TODO
}