fpp/compiler/tools/fpp-to-cpp/test/component/test-impl/QueuedSerialTester.ref.cpp

38 lines
1.0 KiB
C++
Vendored

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