mirror of
https://github.com/nasa/fpp.git
synced 2025-12-16 05:15:08 -06:00
37 lines
982 B
C++
Vendored
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
|
|
}
|