mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
31 lines
662 B
C++
31 lines
662 B
C++
#ifndef MOCK_JSONRPC_PROXY_HPP
|
|
#define MOCK_JSONRPC_PROXY_HPP
|
|
|
|
#include "webfuse/core/jsonrpc/proxy_intern.h"
|
|
#include <gmock/gmock.h>
|
|
|
|
namespace webfuse_test
|
|
{
|
|
|
|
class MockJsonRpcProxy
|
|
{
|
|
public:
|
|
MockJsonRpcProxy();
|
|
virtual ~MockJsonRpcProxy();
|
|
MOCK_METHOD5(wf_jsonrpc_proxy_vinvoke, void (
|
|
struct wf_jsonrpc_proxy * proxy,
|
|
wf_jsonrpc_proxy_finished_fn * finished,
|
|
void * user_data,
|
|
char const * method_name,
|
|
char const * param_info));
|
|
MOCK_METHOD3(wf_jsonrpc_proxy_vnotify, void (
|
|
struct wf_jsonrpc_proxy * proxy,
|
|
char const * method_name,
|
|
char const * param_info));
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|