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

37 lines
982 B
C++
Vendored

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