Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TestComLine Class Reference

ComLineObject for Rocstar testing command-line interface. More...

#include <TestRocstar.H>

Inheritance diagram for TestComLine:
Collaboration diagram for TestComLine:

Public Member Functions

 TestComLine ()
 
 TestComLine (const char *args[])
 
void Initialize ()
 

Detailed Description

ComLineObject for Rocstar testing command-line interface.

Definition at line 16 of file TestRocstar.H.

Constructor & Destructor Documentation

TestComLine ( )
inline

Definition at line 19 of file TestRocstar.H.

20  : IRAD::Util::ComLineObject()
21  {};
TestComLine ( const char *  args[])
inline

Definition at line 22 of file TestRocstar.H.

23  : IRAD::Util::ComLineObject(args)
24  {};

Member Function Documentation

void Initialize ( )
inline

Definition at line 25 of file TestRocstar.H.

Referenced by Rocstar::ParallelTest(), and Rocstar::Test().

25  {
26  AddOption('h',"help");
27  AddHelp("help","Print out long version of help and exit.");
28  AddOption('v',"verblevel",1,"level");
29  AddHelp("verblevel","Set the verbosity level. (default = 0)");
30  AddOption('o',"output",2,"filename");
31  AddHelp("output","Set the output file to <filename>. (default = stdout)");
32  AddOption('l',"list",2,"filename");
33  std::ostringstream Ostr;
34  Ostr << "Set the list file name to <filename>. (no default). "
35  << "The list file should be a text file with one test name per line.";
36  AddHelp("list",Ostr.str());
37  AddOption('n',"name",2,"TestName");
38  AddHelp("name","Run test by name. (no default)");
39  Ostr.str("");
40  Ostr << "Command-line interface for the test of the Rocstar.";
41  _description.assign(Ostr.str());
42  };

Here is the caller graph for this function:


The documentation for this class was generated from the following file: