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 ActiveParamsTester.cpp
|
|
// \author [user name]
|
|
// \brief cpp file for ActiveParams component test harness implementation class
|
|
// ======================================================================
|
|
|
|
#include "ActiveParamsTester.hpp"
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
ActiveParamsTester ::
|
|
ActiveParamsTester() :
|
|
ActiveParamsGTestBase("ActiveParamsTester", ActiveParamsTester::MAX_HISTORY_SIZE),
|
|
component("ActiveParams")
|
|
{
|
|
this->initComponents();
|
|
this->connectPorts();
|
|
}
|
|
|
|
ActiveParamsTester ::
|
|
~ActiveParamsTester()
|
|
{
|
|
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Tests
|
|
// ----------------------------------------------------------------------
|
|
|
|
void ActiveParamsTester ::
|
|
toDo()
|
|
{
|
|
// TODO
|
|
}
|