1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/test/webfuse/mocks/mock_jsonrpc_proxy.cc

34 lines
711 B
C++
Raw Normal View History

2020-04-04 06:32:26 +00:00
#include "webfuse/mocks/mock_jsonrpc_proxy.hpp"
2020-06-28 18:09:09 +00:00
#include "webfuse/test_util/wrap.hpp"
2020-04-04 06:32:26 +00:00
extern "C"
{
static webfuse_test::MockJsonRpcProxy * webfuse_test_MockJsonRpcProxy = nullptr;
WF_WRAP_VFUNC5(webfuse_test_MockJsonRpcProxy, void, wf_impl_jsonrpc_proxy_vinvoke,
2020-04-04 06:32:26 +00:00
struct wf_jsonrpc_proxy *,
wf_jsonrpc_proxy_finished_fn *,
void *,
char const *,
2020-04-04 10:49:02 +00:00
char const *);
WF_WRAP_VFUNC3(webfuse_test_MockJsonRpcProxy, void, wf_impl_jsonrpc_proxy_vnotify,
struct wf_jsonrpc_proxy *,
char const *,
2020-04-04 10:49:02 +00:00
char const *);
2020-04-04 06:32:26 +00:00
}
namespace webfuse_test
{
MockJsonRpcProxy::MockJsonRpcProxy()
{
webfuse_test_MockJsonRpcProxy = this;
}
MockJsonRpcProxy::~MockJsonRpcProxy()
{
webfuse_test_MockJsonRpcProxy = nullptr;
}
}