summaryrefslogtreecommitdiff
path: root/src/Alpha_complex/test/Delaunay_complex_Epick_static_unit_test.cpp
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2023-01-13 15:19:40 +0100
committerGitHub <noreply@github.com>2023-01-13 15:19:40 +0100
commit83d1fc15e402551d2d4a7be8d4ecc124e9f886d5 (patch)
tree736241d96c9bd6813816d3ff2dd37966c85a24e4 /src/Alpha_complex/test/Delaunay_complex_Epick_static_unit_test.cpp
parent533efd51253b0770f9a7de04a42f0820f1a1af66 (diff)
parentd35581357525d02e3126e9fe901904cc764e1f5c (diff)
Merge pull request #789 from VincentRouvreau/split_delaunay_triangulation_unitary_testsupstream-2/latest
Split Delaunay complex in 4 executables to relieve windows CI
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> >>();
+}