diff --git a/BeamAdapter_test/BeamInterpolation_test.cpp b/BeamAdapter_test/BeamInterpolation_test.cpp index 585494760..6f51a19dc 100644 --- a/BeamAdapter_test/BeamInterpolation_test.cpp +++ b/BeamAdapter_test/BeamInterpolation_test.cpp @@ -63,12 +63,12 @@ namespace sofa struct BeamInterpolationTest : public sofa::testing::BaseSimulationTest, public ::testing::WithParamInterface> { - void SetUp() override + void doSetUp() override { - sofa::simpleapi::importPlugin("Sofa.Component.ODESolver.Backward"); - sofa::simpleapi::importPlugin("Sofa.Component.LinearSolver.Iterative"); - sofa::simpleapi::importPlugin("Sofa.Component.StateContainer"); - sofa::simpleapi::importPlugin("Sofa.Component.Topology.Container.Constant"); + sofa::simpleapi::importPlugin(Sofa.Component.ODESolver.Backward); + sofa::simpleapi::importPlugin(Sofa.Component.LinearSolver.Iterative); + sofa::simpleapi::importPlugin(Sofa.Component.StateContainer); + sofa::simpleapi::importPlugin(Sofa.Component.Topology.Container.Constant); sofa::simpleapi::importPlugin("BeamAdapter"); } diff --git a/BeamAdapter_test/component/controller/InterventionalRadiologyController_test.cpp b/BeamAdapter_test/component/controller/InterventionalRadiologyController_test.cpp index 6e359d579..cdf05fe11 100644 --- a/BeamAdapter_test/component/controller/InterventionalRadiologyController_test.cpp +++ b/BeamAdapter_test/component/controller/InterventionalRadiologyController_test.cpp @@ -46,13 +46,13 @@ class InterventionalRadiologyController_test : public BaseTest typedef typename Coord::value_type Real; //typedef typename sofa::defaulttype::SolidTypes::Transform Transform; - void onSetUp() override + void doSetUp() override { sofa::simpleapi::importPlugin("BeamAdapter"); - sofa::simpleapi::importPlugin("Sofa.Component.Topology.Container.Dynamic"); - sofa::simpleapi::importPlugin("Sofa.Component.Topology.Container.Grid"); - sofa::simpleapi::importPlugin("Sofa.Component.Constraint.Projective"); - sofa::simpleapi::importPlugin("Sofa.Component.StateContainer"); + sofa::simpleapi::importPlugin(Sofa.Component.Topology.Container.Dynamic); + sofa::simpleapi::importPlugin(Sofa.Component.Topology.Container.Grid); + sofa::simpleapi::importPlugin(Sofa.Component.Constraint.Projective); + sofa::simpleapi::importPlugin(Sofa.Component.StateContainer); m_root = sofa::simpleapi::createRootNode(sofa::simulation::getSimulation(), "root"); } diff --git a/BeamAdapter_test/component/mapping/BeamProjectionDifferenceMultiMappingTest.cpp b/BeamAdapter_test/component/mapping/BeamProjectionDifferenceMultiMappingTest.cpp index 251d81940..42b023230 100644 --- a/BeamAdapter_test/component/mapping/BeamProjectionDifferenceMultiMappingTest.cpp +++ b/BeamAdapter_test/component/mapping/BeamProjectionDifferenceMultiMappingTest.cpp @@ -65,12 +65,6 @@ struct BeamProjectionDifferenceMultiMappingTest : public sofa::Multi2Mapping_tes typedef typename In2DataTypes::VecCoord In2VecCoord; typedef typename OutDataTypes::VecCoord OutVecCoord; - - void SetUp() override - { - } - - BeamProjectionDifferenceMultiMapping* m_mapping; sofa::component::fem::BeamInterpolation* m_interpolation; sofa::component::topology::container::constant::MeshTopology* m_topology;