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

38 lines
1.0 KiB
C++
Vendored

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