mirror of
https://github.com/nasa/fpp.git
synced 2025-12-17 05:51:30 -06:00
37 lines
1006 B
C++
37 lines
1006 B
C++
// ======================================================================
|
|
// \title ActiveCommandsTester.cpp
|
|
// \author [user name]
|
|
// \brief cpp file for ActiveCommands component test harness implementation class
|
|
// ======================================================================
|
|
|
|
#include "ActiveCommandsTester.hpp"
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
ActiveCommandsTester ::
|
|
ActiveCommandsTester() :
|
|
ActiveCommandsGTestBase("ActiveCommandsTester", ActiveCommandsTester::MAX_HISTORY_SIZE),
|
|
component("ActiveCommands")
|
|
{
|
|
this->initComponents();
|
|
this->connectPorts();
|
|
}
|
|
|
|
ActiveCommandsTester ::
|
|
~ActiveCommandsTester()
|
|
{
|
|
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Tests
|
|
// ----------------------------------------------------------------------
|
|
|
|
void ActiveCommandsTester ::
|
|
toDo()
|
|
{
|
|
// TODO
|
|
}
|