Skip to content

Commit

Permalink
Merge pull request #152
Browse files Browse the repository at this point in the history
* rename doSetup & doTeardDown to keep change in sofa
  • Loading branch information
damienmarchal authored Jan 23, 2025
1 parent b3c1039 commit c03c058
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/forcefield/BeamHookeLawForceFieldTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ struct BeamHookeLawForceFieldTest : public testing::NumericTest<> {
typedef sofa::component::forcefield::BeamHookeLawForceField<DataTypes> TheBeamHookeLawForceField;

// Sets up the test fixture.
void SetUp() override {
void doSetUp() override {
// initialization or some code to run before each test
fprintf(stderr, "Starting up ! \n");
sofa::simpleapi::importPlugin("Sofa.Component");
sofa::simpleapi::importPlugin("Cosserat");
}

// Tears down the test fixture.
void TearDown() override {
void doTearDown() override {
// code to run after each test;
// can be used instead of a destructor,
// but exceptions can be handled in this function only
Expand Down

0 comments on commit c03c058

Please sign in to comment.