My Project
autotest.hh
Go to the documentation of this file.
1 /* -*- mia-c++ -*-
2  *
3  * This file is part of MIA - a toolbox for medical image analysis
4  * Copyright (c) Leipzig, Madrid 1999-2017 Gert Wollny
5  *
6  * MIA is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with MIA; if not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20 
21 #ifndef mia_internal_autotest_hh
22 #define mia_internal_autotest_hh
23 
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27 
28 #include <climits>
29 
30 #ifndef BOOST_TEST_DYN_LINK
31 #define BOOST_TEST_DYN_LINK
32 #endif
33 //#define BOOST_TEST_ALTERNATIVE_INIT_API
34 #define BOOST_TEST_MAIN
35 #define BOOST_TEST_NO_MAIN
36 #include <boost/test/unit_test.hpp>
37 #include <boost/test/tools/floating_point_comparison.hpp>
38 
39 #include <miaconfig.h>
41 #include <mia/core/plugin_base.hh>
42 #include <mia/internal/main.hh>
43 
44 #include <boost/mpl/vector.hpp>
45 
47  {mia::pdi_group, "Test"},
48  {mia::pdi_short, "Unit test."},
49  {mia::pdi_description, "This program runs a set of tests."},
50  {mia::pdi_example_descr, "Example text"},
52 };
53 
54 void test_pluginsets(const std::set< std::string >& plugins, const std::set<std::string>& test_data)
55 {
56  BOOST_CHECK_EQUAL(plugins.size(), test_data.size());
57 
58  for (auto p = plugins.begin(); p != plugins.end(); ++p) {
59  BOOST_CHECK_MESSAGE(test_data.find(*p) != test_data.end(), "unexpected plugin '" << *p << "' found");
60  }
61 
62  for (auto p = test_data.begin(); p != test_data.end(); ++p)
63  BOOST_CHECK_MESSAGE(plugins.find(*p) != plugins.end(), "expected plugin '" << *p << "' not found");
64 }
65 
66 
67 int BOOST_TEST_CALL_DECL
68 do_main( int argc, char *argv[] )
69 {
70  mia::PrepareTestPluginPath prepare_plugin_path;
71 #ifdef WIN32
72  _CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF );
73  _CrtSetReportMode( _CRT_ERROR, _CRTDBG_MODE_DEBUG );
74 #endif
75 
76  if (mia::CCmdOptionList(description).parse(argc, argv, "boost-test-option") != mia::CCmdOptionList::hr_no)
77  return 0;
78 
79  mia::cvdebug() << "Initialize test ...\n";
80  return ::boost::unit_test::unit_test_main( &init_unit_test, argc, argv );
81 }
82 
84 
85 #endif
void test_pluginsets(const std::set< std::string > &plugins, const std::set< std::string > &test_data)
Definition: autotest.hh:54
int BOOST_TEST_CALL_DECL do_main(int argc, char *argv[])
Definition: autotest.hh:68
MIA_MAIN(do_main)
const mia::SProgramDescription description
Definition: autotest.hh:46
std::map< EProgramDescriptionEntry, const char * > SProgramDescription
the map that holds a basic program description
@ pdi_example_descr
@ pdi_example_code
@ pdi_short
@ pdi_description
@ pdi_group
CDebugSink & cvdebug()
Definition: msgstream.hh:226