www.mooseframework.org
Public Member Functions | Static Public Member Functions | List of all members
ChemicalReactionsTestApp Class Reference

#include <ChemicalReactionsTestApp.h>

Inheritance diagram for ChemicalReactionsTestApp:
[legend]

Public Member Functions

 ChemicalReactionsTestApp (InputParameters parameters)
 
virtual ~ChemicalReactionsTestApp ()
 

Static Public Member Functions

static void registerAll (Factory &f, ActionFactory &af, Syntax &s, bool use_test_objects=false)
 
static void registerApps ()
 
static void registerObjects (Factory &factory)
 
static void associateSyntax (Syntax &syntax, ActionFactory &action_factory)
 
static void registerExecFlags (Factory &factory)
 

Detailed Description

Definition at line 19 of file ChemicalReactionsTestApp.h.

Constructor & Destructor Documentation

◆ ChemicalReactionsTestApp()

ChemicalReactionsTestApp::ChemicalReactionsTestApp ( InputParameters  parameters)

Definition at line 26 of file ChemicalReactionsTestApp.C.

27  : MooseApp(parameters)
28 {
30  _factory, _action_factory, _syntax, getParam<bool>("allow_test_objects"));
31 }

◆ ~ChemicalReactionsTestApp()

ChemicalReactionsTestApp::~ChemicalReactionsTestApp ( )
virtual

Definition at line 33 of file ChemicalReactionsTestApp.C.

33 {}

Member Function Documentation

◆ associateSyntax()

void ChemicalReactionsTestApp::associateSyntax ( Syntax &  syntax,
ActionFactory &  action_factory 
)
static

Definition at line 63 of file ChemicalReactionsTestApp.C.

64 {
65  mooseDeprecated("use registerAll instead of associateSyntax");
66  Registry::registerActionsTo(action_factory, {"ChemicalReactionsTestApp"});
67 }

Referenced by CombinedTestApp::associateSyntax().

◆ registerAll()

void ChemicalReactionsTestApp::registerAll ( Factory &  f,
ActionFactory &  af,
Syntax &  s,
bool  use_test_objects = false 
)
static

Definition at line 36 of file ChemicalReactionsTestApp.C.

40 {
42  if (use_test_objects)
43  {
44  Registry::registerObjectsTo(f, {"ChemicalReactionsTestApp"});
45  Registry::registerActionsTo(af, {"ChemicalReactionsTestApp"});
46  }
47 }

Referenced by ChemicalReactionsTestApp(), ChemicalReactionsTestApp__registerAll(), and CombinedTestApp::registerAll().

◆ registerApps()

void ChemicalReactionsTestApp::registerApps ( )
static

Definition at line 50 of file ChemicalReactionsTestApp.C.

51 {
52  registerApp(ChemicalReactionsApp);
53  registerApp(ChemicalReactionsTestApp);
54 }

Referenced by ChemicalReactionsTestApp__registerApps(), and main().

◆ registerExecFlags()

void ChemicalReactionsTestApp::registerExecFlags ( Factory &  factory)
static

Definition at line 69 of file ChemicalReactionsTestApp.C.

70 {
71  mooseDeprecated("use registerAll instead of registerExecFlags");
72 }

Referenced by CombinedTestApp::registerExecFlags().

◆ registerObjects()

void ChemicalReactionsTestApp::registerObjects ( Factory &  factory)
static

Definition at line 57 of file ChemicalReactionsTestApp.C.

58 {
59  mooseDeprecated("use registerAll instead of registerObjects");
60  Registry::registerObjectsTo(factory, {"ChemicalReactionsTestApp"});
61 }

Referenced by CombinedTestApp::registerObjects().


The documentation for this class was generated from the following files:
ChemicalReactionsTestApp
Definition: ChemicalReactionsTestApp.h:19
ChemicalReactionsApp
Definition: ChemicalReactionsApp.h:19
ChemicalReactionsApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: ChemicalReactionsApp.C:51
ChemicalReactionsTestApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s, bool use_test_objects=false)
Definition: ChemicalReactionsTestApp.C:36