Skip to content

Commit

Permalink
Update calls in testing code
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomofiorin committed Oct 23, 2023
1 parent 4ec4f84 commit 3afeaa3
Showing 1 changed file with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ TEST_F(ColvarsForceProviderTest, CanConstructOrNot)
KVTInputs,
colvarsState_,
temperature_,
seed_));
seed_,
""));
}

TEST_F(ColvarsForceProviderTest, SimpleInputs)
Expand All @@ -222,7 +223,8 @@ TEST_F(ColvarsForceProviderTest, SimpleInputs)
KVTInputs,
colvarsState_,
temperature_,
seed_);
seed_,
"");


// Re-use the PreProcessorTest since the ForceProvider recalls colvars initilization and the input are identicals.
Expand Down Expand Up @@ -281,7 +283,8 @@ TEST_F(ColvarsForceProviderTest, WrongColvarsInput)
KVTInputs,
colvarsState_,
temperature_,
seed_));
seed_,
""));
done_atom(&atoms_);
}

Expand Down Expand Up @@ -318,7 +321,8 @@ TEST_F(ColvarsForceProviderTest, CalculateForces4water)
KVTInputs,
colvarsState_,
temperature_,
seed_);
seed_,
"");

forceProvider.calculateForces(forceProviderInput, &forceProviderOutput);

Expand Down Expand Up @@ -362,7 +366,8 @@ TEST_F(ColvarsForceProviderTest, CalculateForcesAlanine)
KVTInputs,
colvarsState_,
temperature_,
seed_);
seed_,
"");

forceProvider.calculateForces(forceProviderInput, &forceProviderOutput);

Expand Down

0 comments on commit 3afeaa3

Please sign in to comment.