1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-01 02:20:45 +00:00
falk-werner_webfuse-provider/test/webfuse/mocks/mock_operation_context.hpp

23 lines
420 B
C++
Raw Normal View History

2020-04-04 21:27:34 +00:00
#ifndef MOCK_OPERATIONS_CONTEXT_HPP
#define MOCK_OPERATIONS_CONTEXT_HPP
#include "webfuse/adapter/impl/operation/context.h"
#include <gmock/gmock.h>
namespace webfuse_test
{
class MockOperationContext
{
public:
MockOperationContext();
virtual ~MockOperationContext();
MOCK_METHOD1(wf_impl_operation_context_get_proxy, wf_jsonrpc_proxy * (
struct wf_impl_operation_context * context));
};
}
#endif