mirror of
https://github.com/nasa/fpp.git
synced 2025-12-13 08:41:15 -06:00
28 lines
709 B
C++
Vendored
28 lines
709 B
C++
Vendored
// ======================================================================
|
|
// \title EmptyGTestBase.cpp
|
|
// \author Generated by fpp-to-cpp
|
|
// \brief cpp file for Empty component Google Test harness base class
|
|
// ======================================================================
|
|
|
|
#include "test-base/EmptyGTestBase.hpp"
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
EmptyGTestBase ::
|
|
EmptyGTestBase(
|
|
const char* const compName,
|
|
const U32 maxHistorySize
|
|
) :
|
|
EmptyTesterBase(compName, maxHistorySize)
|
|
{
|
|
|
|
}
|
|
|
|
EmptyGTestBase ::
|
|
~EmptyGTestBase()
|
|
{
|
|
|
|
}
|