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