From b7f83d80a971ac3cfc8a4d9a72ae4e8842cef169 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Del=20Pino?= <stephane.delpino44@gmail.com> Date: Wed, 9 Feb 2022 17:02:15 +0100 Subject: [PATCH] Add missing test for CellType --- tests/test_CellType.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_CellType.cpp b/tests/test_CellType.cpp index 0e4a42331..176969858 100644 --- a/tests/test_CellType.cpp +++ b/tests/test_CellType.cpp @@ -13,6 +13,7 @@ TEST_CASE("CellType", "[mesh]") REQUIRE(name(CellType::Triangle) == "triangle"); REQUIRE(name(CellType::Quadrangle) == "quadrangle"); + REQUIRE(name(CellType::Polygon) == "polygon"); REQUIRE(name(CellType::Diamond) == "diamond"); REQUIRE(name(CellType::Hexahedron) == "hexahedron"); -- GitLab