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