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

added another server to simplify testing

This commit is contained in:
Falk Werner
2020-06-13 14:59:58 +02:00
parent 5a439f4ef9
commit 55de95caf7
5 changed files with 419 additions and 33 deletions

View File

@@ -0,0 +1,18 @@
#ifndef WF_MOCK_INVOKATION_HANDLER_HPP
#define WF_MOCK_INVOKATION_HANDLER_HPP
#include "webfuse/utils/ws_server2.hpp"
#include <gtest/gtest.h>
namespace webfuse_test
{
class MockInvokationHander: public IIvokationHandler
{
public:
MOCK_METHOD2(Invoke, std::string(char const * method, json_t * params));
};
}
#endif