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