summaryrefslogtreecommitdiffhomepage
path: root/tests/test-server.cpp
blob: b042be4f79698a49bff215a72e07447b52e3736f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <boost/test/unit_test.hpp>
#include <boost/test/data/dataset.hpp>
#include <boost/test/data/monomorphic.hpp>
#include <boost/test/data/test_case.hpp>

#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>

#include <sstream>
#include <string>

#include "server.h"

using namespace std::string_literals;

class ServerFixture
{
public:
 ServerFixture(){}
 ~ServerFixture(){}
 void setup(){}
 void teardown(){}
};

BOOST_FIXTURE_TEST_CASE(server, ServerFixture)
{
}