1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 16:20:46 +00:00
falk-werner_webfuse-provider/test/webfuse/mocks/mock_invokation_handler.hpp

19 lines
325 B
C++
Raw Normal View History

#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