cgal/Kernel_23/test/Kernel/include/CGAL/_test_3.C

69 lines
2.0 KiB
C

// Copyright (c) 1999 Utrecht University (The Netherlands),
// ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany),
// INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg
// (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria),
// and Tel-Aviv University (Israel). All rights reserved.
//
// This file is part of CGAL (www.cgal.org); you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; version 2.1 of the License.
// See the file LICENSE.LGPL distributed with CGAL.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
//
// $URL$
// $Id$
//
//
// Author(s) : Stefan Schirra
#ifndef CGAL__TEST_3_C
#define CGAL__TEST_3_C
#include "_test_cls_vector_3.h"
#include "_test_fct_vector_3.h"
#include "_test_cls_point_3.h"
#include "_test_fct_point_vector_3.h"
#include "_test_fct_point_3.h"
#include "_test_fct_plane_3.h"
#include "_test_further_fct_point_plane_3.h"
#include "_test_cls_direction_3.h"
#include "_test_cls_plane_3.h"
#include "_test_cls_line_3.h"
#include "_test_cls_segment_3.h"
#include "_test_cls_sphere_3.h"
#include "_test_cls_ray_3.h"
#include "_test_cls_triangle_3.h"
#include "_test_cls_tetrahedron_3.h"
#include "_test_cls_aff_transformation_3.h"
#include "_test_cls_iso_cuboid_3.h"
template <class R>
bool
_test_3(const R& r)
{
return
_test_cls_vector_3(r)
&& _test_fct_vector_3(r)
&& _test_cls_point_3(r)
&& _test_fct_point_vector_3(r)
&& _test_fct_point_3(r)
&& _test_fct_plane_3(r)
&& _test_further_fct_point_plane_3(r)
&& _test_cls_direction_3(r)
&& _test_cls_plane_3( r )
&& _test_cls_line_3( r )
&& _test_cls_segment_3( r )
&& _test_cls_sphere_3(r)
&& _test_cls_ray_3( r )
&& _test_cls_triangle_3( r )
&& _test_cls_tetrahedron_3( r )
&& _test_cls_aff_transformation_3( r )
&& _test_cls_iso_cuboid_3( r )
;
}
#endif // CGAL__TEST_3_C