Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
MockOS.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_OS_LINUX_GMOCK_MOCKOS_H
4#define IMT_BASE_OS_LINUX_GMOCK_MOCKOS_H
5
15#include <memory>
16
17namespace imt {
18namespace base {
19namespace os {
20namespace linux {
21namespace gmock {
22
26class MockOS final {
27
28public:
29
34
39
43 MockOS(MockOS const&) = delete;
44 MockOS& operator=(MockOS const&) = delete;
45 MockOS(MockOS&&) noexcept = delete;
46 MockOS& operator=(MockOS&&) noexcept = delete;
47
52 ::testing::NiceMock<MockFileIo>& fileIo();
53
58 ::testing::NiceMock<MockCpuStatistics>& cpuStatistics();
59
64 ::testing::NiceMock<MockMemoryStatistics>& memoryStatistics();
65
70 ::testing::NiceMock<MockNetworkInterface>& networkInterface();
71
76 ::testing::NiceMock<MockProcess>& process();
77
82 ::testing::NiceMock<MockSerialPort>& serialPort();
83
88 ::testing::NiceMock<MockSystemTime>& systemTime();
89
94 ::testing::NiceMock<MockThread>& thread();
95
101
102private:
103
104 static MockOS* s_pInstance;
105 std::unique_ptr<::testing::NiceMock<MockFileIo>> m_mockFileIo;
106 std::unique_ptr<::testing::NiceMock<MockCpuStatistics>> m_mockCpuStatistics;
107 std::unique_ptr<::testing::NiceMock<MockMemoryStatistics>> m_mockMemoryStatistics;
108 std::unique_ptr<::testing::NiceMock<MockNetworkInterface>> m_mockNetworkInterface;
109 std::unique_ptr<::testing::NiceMock<MockProcess>> m_mockProcess;
110 std::unique_ptr<::testing::NiceMock<MockSerialPort>> m_mockSerialPort;
111 std::unique_ptr<::testing::NiceMock<MockSystemTime>> m_mockSystemTime;
112 std::unique_ptr<::testing::NiceMock<MockThread>> m_mockThread;
113};
114
115} // namespace gmock
116} // namespace linux
117} // namespace os
118} // namespace base
119} // namespace imt
120
121#endif // #ifndef IMT_BASE_OS_LINUX_GMOCK_MOCKOS_H
Cpu statistics mock implementation.
File io mock implementation.
Definition MockFileIo.h:19
Mock manager, which will be the entry point for all MockObjects.
Definition MockOS.h:26
::testing::NiceMock< MockThread > & thread()
Gets the mock object for the thread.
::testing::NiceMock< MockMemoryStatistics > & memoryStatistics()
Gets the mock object for the memory statistics.
MockOS(MockOS const &)=delete
Rule of five.
::testing::NiceMock< MockCpuStatistics > & cpuStatistics()
Gets the mock object for the cpu statistics.
static MockOS & getInstance()
Gets the mock instance.
MockOS & operator=(MockOS const &)=delete
::testing::NiceMock< MockFileIo > & fileIo()
Gets the mock object for the file io handling.
MockOS(MockOS &&) noexcept=delete
::testing::NiceMock< MockSerialPort > & serialPort()
Gets the mock object for the serial port.
::testing::NiceMock< MockProcess > & process()
Gets the mock object for the process functions.
::testing::NiceMock< MockNetworkInterface > & networkInterface()
Gets the mock object for the network interface.
::testing::NiceMock< MockSystemTime > & systemTime()
Gets the mock object for the system time.
Process mock implementation.
Definition MockProcess.h:19
Serial port mock implementation.
System time mock implementation.
Mock thread implementation.
Definition MockThread.h:19
This is a application specific file which is used to configure Imt.Base.Core.Math.