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