Test scaffolds

This commit is contained in:
Thomas Krijnen
2026-07-07 10:53:16 +02:00
parent 08ebd05be5
commit 0a1b50cd46
5 changed files with 63 additions and 18 deletions
+11
View File
@@ -0,0 +1,11 @@
# This file was generated with the assistance of an AI coding tool.
add_executable(test_ifcopenshell_geometry
test_ifcopenshell_geometry.cpp
)
target_link_libraries(test_ifcopenshell_geometry PRIVATE Catch2::Catch2WithMain)
catch_discover_tests(test_ifcopenshell_geometry
DL_PATHS
$<TARGET_FILE_DIR:Catch2::Catch2>
$<TARGET_FILE_DIR:Catch2::Catch2WithMain>
)
@@ -0,0 +1,7 @@
// This file was generated with the assistance of an AI coding tool.
#include <catch2/catch_test_macros.hpp>
TEST_CASE("IfcGeom C++ test scaffold is registered", "[ifcgeom]") {
REQUIRE(true);
}
+11
View File
@@ -0,0 +1,11 @@
# This file was generated with the assistance of an AI coding tool.
add_executable(test_ifcopenshell_parse
test_ifcopenshell_parse.cpp
)
target_link_libraries(test_ifcopenshell_parse PRIVATE Catch2::Catch2WithMain)
catch_discover_tests(test_ifcopenshell_parse
DL_PATHS
$<TARGET_FILE_DIR:Catch2::Catch2>
$<TARGET_FILE_DIR:Catch2::Catch2WithMain>
)
@@ -0,0 +1,7 @@
// This file was generated with the assistance of an AI coding tool.
#include <catch2/catch_test_macros.hpp>
TEST_CASE("IfcParse C++ test scaffold is registered", "[ifcparse]") {
REQUIRE(true);
}