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

refactor: changed directory structure

This commit is contained in:
Falk Werner
2020-06-21 21:18:43 +02:00
parent 528a8ef501
commit 73f15b3790
43 changed files with 63 additions and 63 deletions

View File

@@ -1,5 +1,5 @@
#include "webfuse_provider/jsonrpc/mock_timer.hpp"
#include "webfuse_provider/utils/wrap.hpp"
#include "webfuse_provider/test_util/wrap.hpp"
extern "C"
{

View File

@@ -1,5 +1,5 @@
#include "webfuse_provider/mocks/mock_jsonrpc_proxy.hpp"
#include "webfuse_provider/utils/wrap.hpp"
#include "webfuse_provider/test_util/wrap.hpp"
extern "C"
{

View File

@@ -1,5 +1,5 @@
#include "webfuse_provider/mocks/mock_operation_context.hpp"
#include "webfuse/utils/wrap.hpp"
#include "webfuse/test_util/wrap.hpp"
extern "C"
{

View File

@@ -3,10 +3,10 @@
#include <webfuse_provider/client_protocol.h>
#include <webfuse_provider/client_config.h>
#include "webfuse_provider/utils/ws_server.h"
#include "webfuse_provider/test_util/ws_server.h"
#include "webfuse_provider/mocks/mock_provider_client.hpp"
#include "webfuse_provider/protocol_names.h"
#include "webfuse_provider/utils/timeout_watcher.hpp"
#include "webfuse_provider/test_util/timeout_watcher.hpp"
#include <libwebsockets.h>

View File

@@ -1,4 +1,4 @@
#include "webfuse_provider/utils/timeout_watcher.hpp"
#include "webfuse_provider/test_util/timeout_watcher.hpp"
#include <stdexcept>
#include <thread>

View File

@@ -1,5 +1,5 @@
#include "webfuse_provider/utils/ws_server.h"
#include "webfuse_provider/impl/lws_log.h"
#include "webfuse_provider/test_util/ws_server.h"
#include "webfuse_provider/impl/util/lws_log.h"
#include <libwebsockets.h>
#include <thread>

View File

@@ -1,5 +1,5 @@
#include <gtest/gtest.h>
#include "webfuse_provider/impl/base64.h"
#include "webfuse_provider/impl/util/base64.h"
TEST(Base64, EncodedSize)
{

View File

@@ -1,5 +1,5 @@
#include <gtest/gtest.h>
#include "webfuse_provider/impl/container_of.h"
#include "webfuse_provider/impl/util/container_of.h"
namespace
{

View File

@@ -1,7 +1,7 @@
#include <gtest/gtest.h>
#include "webfuse_provider/impl/message_queue.h"
#include "webfuse_provider/impl/message.h"
#include "webfuse_provider/impl/slist.h"
#include "webfuse_provider/impl/util/slist.h"
namespace
{

View File

@@ -1,5 +1,5 @@
#include <gtest/gtest.h>
#include "webfuse_provider/impl/slist.h"
#include "webfuse_provider/impl/util/slist.h"
TEST(wfp_slist, init)
{

View File

@@ -1,6 +1,6 @@
#include <gtest/gtest.h>
#include "webfuse_provider/impl/url.h"
#include "webfuse_provider/impl/util/url.h"
TEST(url, ParseWs)
{

View File

@@ -1,5 +1,5 @@
#include <gtest/gtest.h>
#include "webfuse_provider/impl/json_util.h"
#include "webfuse_provider/impl/util/json_util.h"
TEST(jsonrpc_util, get_int)
{