fpp/compiler/tools/fpp-to-cpp/test/component/test-impl/ActiveNoArgsPortsOnlyTester.ref.hpp

77 lines
2.2 KiB
C++
Vendored

// ======================================================================
// \title ActiveNoArgsPortsOnlyTester.hpp
// \author [user name]
// \brief hpp file for ActiveNoArgsPortsOnly component test harness implementation class
// ======================================================================
#ifndef ActiveNoArgsPortsOnlyTester_HPP
#define ActiveNoArgsPortsOnlyTester_HPP
#include "ActiveNoArgsPortsOnlyGTestBase.hpp"
#include "ActiveNoArgsPortsOnly.hpp"
class ActiveNoArgsPortsOnlyTester final :
public ActiveNoArgsPortsOnlyGTestBase
{
public:
// ----------------------------------------------------------------------
// Constants
// ----------------------------------------------------------------------
// Maximum size of histories storing events, telemetry, and port outputs
static const FwSizeType MAX_HISTORY_SIZE = 10;
// Instance ID supplied to the component instance under test
static const FwEnumStoreType TEST_INSTANCE_ID = 0;
// Queue depth supplied to the component instance under test
static const FwSizeType TEST_INSTANCE_QUEUE_DEPTH = 10;
public:
// ----------------------------------------------------------------------
// Construction and destruction
// ----------------------------------------------------------------------
//! Construct object ActiveNoArgsPortsOnlyTester
ActiveNoArgsPortsOnlyTester();
//! Destroy object ActiveNoArgsPortsOnlyTester
~ActiveNoArgsPortsOnlyTester();
public:
// ----------------------------------------------------------------------
// Tests
// ----------------------------------------------------------------------
//! To do
void toDo();
private:
// ----------------------------------------------------------------------
// Helper functions
// ----------------------------------------------------------------------
//! Connect ports
void connectPorts();
//! Initialize components
void initComponents();
private:
// ----------------------------------------------------------------------
// Member variables
// ----------------------------------------------------------------------
//! The component under test
ActiveNoArgsPortsOnly component;
};
#endif