ElmerFoamFSI  2.0
ElmerFoamFSI is fluid-solid interaction simulation application built up from OpenFOAM CFD and Elmer CSM coupled through the IMPACT multiphysics software integration infrastructure.
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Macros Groups Pages
virtual void ProcessTests ( std::list< std::string > &  test_names,
ResultsType &  result 
)
inlinevirtual

Runs a list of tests specified by name.

Parameters
test_nameslist of string test names
resultElmerFoamFSI::TestResults object to store test results.

Definition at line 1909 of file ElmerFoamFSITest.H.

References TestingObject< ResultsType >::Epilogue(), TestingObject< ResultsType >::Prologue(), and TestingObject< ResultsType >::RunTest().

1909  {
1910  Prologue();
1911  std::list<std::string>::iterator tni = test_names.begin();
1912  while(tni != test_names.end())
1913  RunTest(*tni++,result);
1914  Epilogue();
1915  }
virtual void Epilogue()
Tears down the testing fixtures if needed.
virtual void RunTest(const std::string &name, ResultsType &result)
Runs a test specified by name.
virtual void Prologue()
Sets up the data fixtures for the tests.

Here is the call graph for this function: