File: piontests.cpp

package info (click to toggle)
pion 5.0.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,852 kB
  • ctags: 17,413
  • sloc: cpp: 13,965; sh: 10,263; perl: 269; makefile: 207; pascal: 152
file content (24 lines) | stat: -rw-r--r-- 726 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// ---------------------------------------------------------------------
// pion:  a Boost C++ framework for building lightweight HTTP interfaces
// ---------------------------------------------------------------------
// Copyright (C) 2007-2012 Cloudmeter, Inc.  (http://www.cloudmeter.com)
//
// Distributed under the Boost Software License, Version 1.0.
// See http://www.boost.org/LICENSE_1_0.txt
//

#include <iostream>
#include <pion/config.hpp>
#include <pion/logger.hpp>

#define BOOST_TEST_MODULE pion-unit-tests
#include <boost/test/unit_test.hpp>

#include <pion/test/unit_test.hpp>

namespace pion {
    namespace test {
        std::ofstream config::m_test_log_file;
        BOOST_GLOBAL_FIXTURE(config);
    }
}