mirror of https://github.com/CGAL/cgal
Use the non-header only version of the boost test framework
This commit is contained in:
parent
99f082bd2e
commit
55d9d30f26
|
|
@ -18,7 +18,7 @@
|
|||
//
|
||||
// Author(s) : Philipp Möller, Andreas Fabri
|
||||
|
||||
#include <boost/test/included/unit_test.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include <CGAL/basic.h>
|
||||
#include <OpenMesh/Core/IO/MeshIO.hh>
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
//
|
||||
// Author(s) : Philipp Möller
|
||||
|
||||
#include <boost/test/included/unit_test.hpp>
|
||||
#define BOOST_TEST_MAIN 1
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include <CGAL/basic.h>
|
||||
#include <CGAL/Simple_cartesian.h>
|
||||
#include <CGAL/boost/graph/graph_traits_Polyhedron_3.h>
|
||||
#include <CGAL/boost/graph/graph_concepts.h>
|
||||
|
|
@ -131,6 +131,9 @@ void runtime_check_halfedgegraph()
|
|||
BOOST_CHECK_EQUAL(num_faces(p), 4);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
boost::unit_test::test_suite*
|
||||
init_unit_test_suite( int, char** const)
|
||||
{
|
||||
|
|
@ -143,6 +146,8 @@ init_unit_test_suite( int, char** const)
|
|||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
// int main()
|
||||
// {
|
||||
// return 0;
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
//
|
||||
// Author(s) : Philipp Möller
|
||||
|
||||
#include <CGAL/basic.h>
|
||||
#include <CGAL/Simple_cartesian.h>
|
||||
#include <CGAL/boost/graph/graph_traits_Triangulation_2.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#define BOOST_TEST_MODULE euler_operations test
|
||||
#include <boost/test/included/unit_test.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/test/test_case_template.hpp>
|
||||
|
||||
#include "test_Prefix.h"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@
|
|||
#include <boost/assign.hpp>
|
||||
#include <boost/mpl/list.hpp>
|
||||
|
||||
#include <CGAL/basic.h>
|
||||
#include <CGAL/Simple_cartesian.h>
|
||||
|
||||
#include <CGAL/Polyhedron_items_with_id_3.h>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
#include <boost/test/included/unit_test.hpp>
|
||||
|
||||
#define BOOST_TEST_MAIN 1
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/test/parameterized_test.hpp>
|
||||
|
||||
#include "test_Prefix.h"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
#include <CGAL/basic.h>
|
||||
#include <CGAL/Simple_cartesian.h>
|
||||
#include <CGAL/boost/graph/graph_traits_Triangulation_2.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#define BOOST_TEST_MODULE graph_geometry test
|
||||
#include <boost/test/included/unit_test.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include "test_Prefix.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
#include <boost/test/included/unit_test.hpp>
|
||||
|
||||
#define BOOST_TEST_MAIN 1
|
||||
|
||||
#include <boost/test/parameterized_test.hpp>
|
||||
#include <boost/test/test_case_template.hpp>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue