diff --git a/test/test_model/CMakeLists.txt b/test/test_model/CMakeLists.txt index c993e2546..3c7779ba3 100644 --- a/test/test_model/CMakeLists.txt +++ b/test/test_model/CMakeLists.txt @@ -1,42 +1,42 @@ #=============================================================================== # @file CMakeLists.txt # # @author Guillaume Anciaux # # @date creation: Sun Oct 19 2014 # @date last modification: Wed Jan 30 2019 # # @brief configuration for model tests # # # @section LICENSE # # Copyright (©) 2010-2021 EPFL (Ecole Polytechnique Fédérale de Lausanne) # Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides) # # Akantu is free software: 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, either version 3 of the License, or (at your option) any # later version. # # Akantu is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more # details. # # You should have received a copy of the GNU Lesser General Public License along # with Akantu. If not, see . # # @section DESCRIPTION # #=============================================================================== add_subdirectory(patch_tests) add_akantu_test(test_common "Tests the common part of the models") add_akantu_test(test_solid_mechanics_model "Test for the solid mechanics model") add_akantu_test(test_structural_mechanics_model "Test for the structural mechanics model") add_akantu_test(test_heat_transfer_model "Test heat transfer model") add_akantu_test(test_contact_mechanics_model "Test contact mechanics model") -add_akantu_test(test_contact_mechanics_model_internodes "Test contact mechanics internodes model") +add_akantu_test(test_contact_mechanics_internodes_model "Test contact mechanics internodes model") add_akantu_test(test_phase_field_model "Test phase field model") diff --git a/test/test_model/test_contact_mechanics_internodes_model/CMakeLists.txt b/test/test_model/test_contact_mechanics_internodes_model/CMakeLists.txt index f7e5186e7..21512b0d0 100644 --- a/test/test_model/test_contact_mechanics_internodes_model/CMakeLists.txt +++ b/test/test_model/test_contact_mechanics_internodes_model/CMakeLists.txt @@ -1,40 +1,40 @@ #=============================================================================== # @file CMakeLists.txt # # @author Moritz Waldleben # # @date creation: Thu 16 2022 # @date last modification: Thue 16 2022 # # @brief configuration python contact mechanics internodes test # # # @section LICENSE # # Copyright (©) 2010-2021 EPFL (Ecole Polytechnique Fédérale de Lausanne) # Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides) # # Akantu is free software: 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, either version 3 of the License, or (at your option) any # later version. # # Akantu is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more # details. # # You should have received a copy of the GNU Lesser General Public License along # with Akantu. If not, see . # #=============================================================================== add_mesh(contact_mesh prototype_internodes/contact.geo DIM 2 ORDER 1 OUTPUT contact.msh) register_test(test_internodes SCRIPT test_internodes.py PYTHON FILES_TO_COPY prototype_internodes/material.dat DEPENDS contact_mesh - PACKAGE python_interface contact_mechanics_internodes_model + PACKAGE python_interface contact_mechanics_internodes )