mirror of
https://github.com/nasa/fpp.git
synced 2025-12-14 01:11:35 -06:00
37 lines
1.0 KiB
C++
37 lines
1.0 KiB
C++
// ======================================================================
|
|
// \title EmptyGTestBase.hpp
|
|
// \author Generated by fpp-to-cpp
|
|
// \brief hpp file for Empty component Google Test harness base class
|
|
// ======================================================================
|
|
|
|
#ifndef EmptyGTestBase_HPP
|
|
#define EmptyGTestBase_HPP
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "test-base/EmptyTesterBase.hpp"
|
|
|
|
//! \class EmptyGTestBase
|
|
//! \brief Auto-generated base for Empty component Google Test harness
|
|
class EmptyGTestBase :
|
|
public EmptyTesterBase
|
|
{
|
|
|
|
protected:
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
//! Construct object EmptyGTestBase
|
|
EmptyGTestBase(
|
|
const char* const compName, //!< The component name
|
|
const U32 maxHistorySize //!< The maximum size of each history
|
|
);
|
|
|
|
//! Destroy object EmptyGTestBase
|
|
~EmptyGTestBase();
|
|
|
|
};
|
|
|
|
#endif
|