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

37 lines
982 B
C++
Vendored

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