summaryrefslogtreecommitdiff
path: root/src/Alpha_complex/test/Delaunay_complex_Epick_static_unit_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Alpha_complex/test/Delaunay_complex_Epick_static_unit_test.cpp')
-rw-r--r--src/Alpha_complex/test/Delaunay_complex_Epick_static_unit_test.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Alpha_complex/test/Delaunay_complex_Epick_static_unit_test.cpp b/src/Alpha_complex/test/Delaunay_complex_Epick_static_unit_test.cpp
new file mode 100644
index 00000000..a401f09e
--- /dev/null
+++ b/src/Alpha_complex/test/Delaunay_complex_Epick_static_unit_test.cpp
@@ -0,0 +1,22 @@
+/* This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
+ * See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
+ * Author(s): Vincent Rouvreau
+ *
+ * Copyright (C) 2020 Inria
+ *
+ * Modification(s):
+ * - YYYY/MM Author: Description of the modification
+ */
+
+#define BOOST_TEST_DYN_LINK
+#define BOOST_TEST_MODULE "delaunay_complex_inexact_kernel_static"
+#include <boost/test/unit_test.hpp>
+
+#include <CGAL/Epick_d.h>
+
+#include "Delaunay_complex_unit_test.h"
+
+BOOST_AUTO_TEST_CASE(Delaunay_complex_inexact_kernel_static_simplices_comparison) {
+ // Use static dimension_tag for the user not to be able to set dimension
+ compare_delaunay_complex_simplices<CGAL::Epick_d< CGAL::Dimension_tag<5> >>();
+}