Windows: use Boost 1.59, msvc 14.0
[metaproxy-moved-to-github.git] / src / test_session1.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) Index Data
3
4 Metaproxy is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18
19 #include "config.hpp"
20 #include <metaproxy/session.hpp>
21
22 #include <iostream>
23
24 #define BOOST_AUTO_TEST_MAIN
25 #define BOOST_TEST_DYN_LINK
26 #include <boost/test/auto_unit_test.hpp>
27
28 using namespace boost::unit_test;
29 namespace mp = metaproxy_1;
30
31 BOOST_AUTO_TEST_CASE( testsession1 )
32 {
33
34     // test session
35     try {
36         mp::Session session1;
37         mp::Session session2;
38         mp::Session session3;
39         mp::Session session4;
40         mp::Session session5;
41
42         BOOST_CHECK_EQUAL (session5.id(), (unsigned long) 5);
43
44         mp::Session session = session3;
45
46         BOOST_CHECK_EQUAL (session.id(), (unsigned long) 3);
47     }
48     catch (std::exception &e) {
49         std::cout << e.what() << "\n";
50         BOOST_CHECK (false);
51     }
52     catch (...) {
53         BOOST_CHECK (false);
54     }
55 }
56
57 /*
58  * Local variables:
59  * c-basic-offset: 4
60  * c-file-style: "Stroustrup"
61  * indent-tabs-mode: nil
62  * End:
63  * vim: shiftwidth=4 tabstop=8 expandtab
64  */
65