Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / tests / unit / mocks / cpp_interfaces / mock_task_executor.hpp
1 // Copyright (C) 2018-2019 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4
5 #pragma once
6
7 #include <gmock/gmock.h>
8 #include <cpp_interfaces/ie_itask_executor.hpp>
9
10 class MockTaskExecutor : public InferenceEngine::ITaskExecutor {
11 public:
12     typedef std::shared_ptr<MockTaskExecutor> Ptr;
13
14     MOCK_METHOD1(startTask, bool(InferenceEngine::Task::Ptr));
15 };