plugintester.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-2013 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 #ifdef HAVE_CONFIG_H
22 #include <config.h>
23 #endif
24 
25 #include <climits>
26 
27 #ifndef BOOST_TEST_DYN_LINK
28 #define BOOST_TEST_DYN_LINK
29 #endif
30 
31 #define BOOST_TEST_MAIN
32 #define BOOST_TEST_NO_MAIN
33 #include <boost/test/unit_test.hpp>
34 #include <boost/test/floating_point_comparison.hpp>
35 
36 #include <miaconfig.h>
37 #include <mia/core/factory.hh>
38 #include <mia/core/msgstream.hh>
40 
42 
43 template <typename Plugin>
44 typename Plugin::UniqueProduct BOOST_TEST_create_from_plugin(const char *param)
45 {
46  assert(param);
47  Plugin plugin;
48  CComplexOptionParser param_list(param);
49  BOOST_REQUIRE(param_list.size() > 0);
50  BOOST_CHECK_EQUAL(plugin.get_name(), param_list.begin()->first);
51  return typename Plugin::UniqueProduct(plugin.create(param_list.begin()->second, param));
52 }
53 
54 
56 
57 
59  {mia::pdi_group, "Test"},
60  {mia::pdi_short, "Unit test for a plug-in."},
61  {mia::pdi_description,"This program runs a set of tests."},
62  {mia::pdi_example_descr, "Example text"},
64 };
65 
66 int BOOST_TEST_CALL_DECL
67 main( int argc, char* argv[] )
68 {
69  setenv("MIA_PLUGIN_TESTPATH", MIA_BUILD_ROOT "/plugintest/" PLUGIN_INSTALL_PATH,1);
70 #ifdef WIN32
71  _CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF );
72  _CrtSetReportMode( _CRT_ERROR, _CRTDBG_MODE_DEBUG );
73 #endif
74  if (mia::CCmdOptionList(description).parse(argc, argv, "boost-test-option") != mia::CCmdOptionList::hr_no)
75  return 0;
76  mia::cvdebug() << "Initialize test ...\n";
77  return ::boost::unit_test::unit_test_main( &init_unit_test, argc, argv );
78 }