OSDN Git Service

ソースツリー再構成中(ほぼOK?)
[ultramonkey-l7/ultramonkey-l7-v3.git] / l7vsd / unit_tests / module_test / protocol_module_ip_test / ip_ut.cpp
1 /*
2  * @file  ip_ut.cpp
3  * @brief ip test main file.
4  *
5  * L7VSD: Linux Virtual Server for Layer7 Load Balancing
6  * Copyright (C) 2009  NTT COMWARE Corporation.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  **********************************************************************/
24
25 #include <boost/test/included/unit_test.hpp>
26
27 #include "protocol_module_ip_test.cpp"
28 #include "ip_replication_data_processor_test.cpp"
29 #include "ip_session_data_processor_test.cpp"
30
31 test_suite*     init_unit_test_suite( int argc, char* argv[] ){
32
33         protocol_module_ip_test_main();
34         ip_replication_data_processor_test_main();
35         ip_session_data_processor_test_main();
36
37         return 0;
38 }
39