Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
MockProcess.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_MOCKPROCESS_H
4#define IMT_BASE_OS_LINUX_GMOCK_MOCKPROCESS_H
5
6#include <gmock/gmock.h>
9
10namespace imt {
11namespace base {
12namespace os {
13namespace linux {
14namespace gmock {
15
20
21public:
22
23 MOCK_METHOD(void, exit, (int32_t), (noexcept));
25 MOCK_METHOD(void, signal, (int32_t), (noexcept));
26 MOCK_METHOD(void, start, (std::string), (noexcept));
27 MOCK_METHOD(void, resetSignalHandler, (int32_t), (noexcept));
28};
29
30} // namespace gmock
31} // namespace linux
32} // namespace os
33} // namespace base
34} // namespace imt
35
36#endif // #ifndef IMT_BASE_OS_LINUX_GMOCK_MOCKPROCESS_H
void(*)(int32_t) HandlerFunction
Defines the signal handler function signature.
Definition Process.h:23
Process mock implementation.
Definition MockProcess.h:19
MOCK_METHOD(void, exit,(int32_t),(noexcept))
MOCK_METHOD(void, resetSignalHandler,(int32_t),(noexcept))
MOCK_METHOD(void, signal,(int32_t),(noexcept))
MOCK_METHOD(void, setSignalHandler,(int32_t, ::imt::base::os::linux::Process::HandlerFunction),(noexcept))
MOCK_METHOD(void, start,(std::string),(noexcept))
This is a application specific file which is used to configure Imt.Base.Core.Math.
__int32 int32_t
Definition stdint.h:60