1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2026-03-02 04:09:18 +00:00

added unit tests for close operation (adapter)

This commit is contained in:
Falk Werner
2020-04-04 08:55:59 +02:00
parent 77a870b9b7
commit 289264e269
11 changed files with 112 additions and 12 deletions

View File

@@ -12,6 +12,12 @@ WF_WRAP_FUNC6(webfuse_test_MockJsonRpcProxy, void, wf_jsonrpc_proxy_vinvoke,
char const *,
char const *,
va_list);
WF_WRAP_FUNC4(webfuse_test_MockJsonRpcProxy, void, wf_jsonrpc_proxy_vnotify,
struct wf_jsonrpc_proxy *,
char const *,
char const *,
va_list);
}
namespace webfuse_test

View File

@@ -19,6 +19,11 @@ public:
char const * method_name,
char const * param_info,
va_list args));
MOCK_METHOD4(wf_jsonrpc_proxy_vnotify, void (
struct wf_jsonrpc_proxy * proxy,
char const * method_name,
char const * param_info,
va_list args));
};