fpp/compiler/tools/fpp-to-cpp/test/component/test-impl/PassiveCommandsTester.ref.cpp
2024-04-09 13:46:00 -07:00

37 lines
1018 B
C++
Vendored

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