Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
MockDataSender.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_LIB_REMOTING_GMOCK_MOCKDATASENDER_H
4#define IMT_BASE_LIB_REMOTING_GMOCK_MOCKDATASENDER_H
5
6#include <gmock/gmock.h>
9
10namespace imt {
11namespace base {
12namespace lib {
13namespace remoting {
14namespace gmock {
15
20
21public:
22
23 MOCK_METHOD(bool, sendData, (uint8_t const* pData, uint32_t const countDataBytes), (override));
24 MOCK_METHOD(void, onTransmissionComplete, (), (override));
25 MOCK_METHOD(void, onTransmissionError, (), (override));
26};
27
28} // namespace gmock
29} // namespace remoting
30} // namespace lib
31} // namespace base
32} // namespace imt
33
34#endif // #ifndef IMT_BASE_LIB_REMOTING_GMOCK_MOCKDATASENDER_H
Inteface for a sender that can be called to send byte data.
virtual void onTransmissionError()=0
Called on a transmission error.
virtual bool sendData(uint8_t const pData[], uint32_t const countDataBytes)=0
Send data.
virtual void onTransmissionComplete()=0
Called on a completed transmission.
Mock implementation of imt::base::lib::remoting::DataSenderIfc.
MOCK_METHOD(void, onTransmissionError,(),(override))
MOCK_METHOD(void, onTransmissionComplete,(),(override))
MOCK_METHOD(bool, sendData,(uint8_t const *pData, uint32_t const countDataBytes),(override))
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62