36#ifndef IMT_BASE_DFF_ACTIVEPARTS_TEST_CHANNELMOCKOUT_H
37#define IMT_BASE_DFF_ACTIVEPARTS_TEST_CHANNELMOCKOUT_H
48namespace activeparts {
73 bool const sameData = memcmp(
dataBuffer, other.
dataBuffer, ::imt::base::dff::runtime::EVENTDATA_SIZE_BYTES) == 0;
75 return sameProtocolIdentifier && sameDataSize && sameData;
125 std::deque<DataContainer> m_receivedData;
Serialization is the process of translating data structures into a binary representation.
Interface of a channel to transmit data to a receiver.
Mocking output channel for unit test which stores the received data.
uint32_t numberOfDataItemsReceived() const
Returns the number of received data items.
DataContainer const & getDataItem(uint32_t const index)
Returns the element at the given index.
void send(uint16_t const protocolIdentifier, ::imt::base::core::serialization::SerializableIfc const *const pEventData, size_t const eventDataSizeBytes) final
DataContainer popDataItem()
Returns and removes the first element.
void deleteReceivedData()
Deletes all received data.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int16 uint16_t
unsigned __int32 uint32_t
Structure which stores the received data received on the channel.
uint8_t dataBuffer[imt::base::dff::runtime::EVENTDATA_SIZE_BYTES]
Buffer which holds the message.
bool operator==(DataContainer const &other) const
Equals operator overload.
uint32_t dataSize
Actual size of the message in bytes.
uint16_t protocolIdentifier
Protocol identifier.