Windows: use Boost 1.59, msvc 14.0
[metaproxy-moved-to-github.git] / src / test_package1.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 <iostream>
21 #include <stdexcept>
22
23 #include <metaproxy/package.hpp>
24
25 #define BOOST_AUTO_TEST_MAIN
26 #define BOOST_TEST_DYN_LINK
27 #include <boost/test/auto_unit_test.hpp>
28
29 using namespace boost::unit_test;
30 namespace mp = metaproxy_1;
31
32 BOOST_AUTO_TEST_CASE( test_package1_1 )
33 {
34     try {
35         mp::Package package1;
36
37         mp::Origin origin;
38         mp::Session session;
39         mp::Package package2(package1.session(), origin);
40
41         BOOST_CHECK_EQUAL(package1.session().id(), package2.session().id());
42     }
43     catch ( ... ) {
44         BOOST_CHECK (false);
45     }
46 }
47
48 /*
49  * Local variables:
50  * c-basic-offset: 4
51  * c-file-style: "Stroustrup"
52  * indent-tabs-mode: nil
53  * End:
54  * vim: shiftwidth=4 tabstop=8 expandtab
55  */
56