Add first version
[ric-plt/sdl.git] / include / private / tst / enginemock.hpp
diff --git a/include/private/tst/enginemock.hpp b/include/private/tst/enginemock.hpp
new file mode 100644 (file)
index 0000000..5d804c8
--- /dev/null
@@ -0,0 +1,58 @@
+/*
+   Copyright (c) 2018-2019 Nokia.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+*/
+
+#ifndef SHAREDDATALAYER_TST_ENGINEMOCK_HPP_
+#define SHAREDDATALAYER_TST_ENGINEMOCK_HPP_
+
+#include <gmock/gmock.h>
+#include "private/engine.hpp"
+#include "private/filedescriptor.hpp"
+
+namespace shareddatalayer
+{
+    namespace tst
+    {
+        class EngineMock: public Engine
+        {
+        public:
+            MOCK_CONST_METHOD0(fd, int());
+
+            MOCK_METHOD0(handleEvents, void());
+
+            MOCK_METHOD3(addMonitoredFD, void(int fd, unsigned int events, const EventHandler& eh));
+
+            MOCK_METHOD3(addMonitoredFD, void(FileDescriptor& fd, unsigned int events, const EventHandler& eh));
+
+            MOCK_METHOD2(modifyMonitoredFD, void(int fd, unsigned int events));
+
+            MOCK_CONST_METHOD1(isMonitoredFD, bool(int fd));
+
+            MOCK_METHOD1(deleteMonitoredFD, void(int fd));
+
+            MOCK_METHOD1(postCallback, void(const Callback& callback));
+
+            MOCK_METHOD3(armTimer, void(Timer& timer, const Timer::Duration& duration, const Timer::Callback& cb));
+
+            MOCK_METHOD1(disarmTimer, void(const Timer& timer));
+
+            MOCK_METHOD0(run, void());
+
+            MOCK_METHOD0(stop, void());
+        };
+    }
+}
+
+#endif