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

37 lines
1006 B
C++
Vendored

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