4b14019524e97b5b0474f3cd3177a314c035b6f9
[metaproxy-moved-to-github.git] / src / test_filter1.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 2005-2010 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/filter.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 class TFilter: public mp::filter::Base {
33 public:
34     void process(mp::Package & package) const {};
35 };
36     
37
38 BOOST_AUTO_TEST_CASE( test_filter1 )
39 {
40     try{
41         TFilter filter;
42
43         
44         BOOST_CHECK (sizeof(filter) > 0);
45     }
46     catch ( ... ) {
47         BOOST_CHECK (false);
48     }
49 }
50
51 /*
52  * Local variables:
53  * c-basic-offset: 4
54  * c-file-style: "Stroustrup"
55  * indent-tabs-mode: nil
56  * End:
57  * vim: shiftwidth=4 tabstop=8 expandtab
58  */
59