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

#include <MiscTestApp.h>

Inheritance diagram for MiscTestApp:
[legend]

Public Member Functions

 MiscTestApp (InputParameters parameters)
 
virtual ~MiscTestApp ()
 

Static Public Member Functions

static void registerApps ()
 
static void registerAll (Factory &f, ActionFactory &af, Syntax &s, bool use_test_objs=false)
 
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 MiscTestApp.h.

Constructor & Destructor Documentation

◆ MiscTestApp()

MiscTestApp::MiscTestApp ( InputParameters  parameters)

Definition at line 26 of file MiscTestApp.C.

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

◆ ~MiscTestApp()

MiscTestApp::~MiscTestApp ( )
virtual

Definition at line 32 of file MiscTestApp.C.

32 {}

Member Function Documentation

◆ associateSyntax()

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

Definition at line 59 of file MiscTestApp.C.

60 {
61  Registry::registerActionsTo(action_factory, {"MiscTestApp"});
62 }

Referenced by CombinedTestApp::associateSyntax().

◆ registerAll()

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

Definition at line 35 of file MiscTestApp.C.

36 {
37  MiscApp::registerAll(f, af, s);
38  if (use_test_objs)
39  {
40  Registry::registerObjectsTo(f, {"MiscTestApp"});
41  Registry::registerActionsTo(af, {"MiscTestApp"});
42  }
43 }

Referenced by MiscTestApp(), MiscTestApp__registerAll(), and CombinedTestApp::registerAll().

◆ registerApps()

void MiscTestApp::registerApps ( )
static

Definition at line 46 of file MiscTestApp.C.

47 {
48  registerApp(MiscApp);
49  registerApp(MiscTestApp);
50 }

Referenced by main(), and MiscTestApp__registerApps().

◆ registerExecFlags()

void MiscTestApp::registerExecFlags ( Factory &  factory)
static

Definition at line 65 of file MiscTestApp.C.

66 {
67 }

Referenced by CombinedTestApp::registerExecFlags().

◆ registerObjects()

void MiscTestApp::registerObjects ( Factory &  factory)
static

Definition at line 53 of file MiscTestApp.C.

54 {
55  Registry::registerObjectsTo(factory, {"MiscTestApp"});
56 }

Referenced by CombinedTestApp::registerObjects().


The documentation for this class was generated from the following files:
MiscApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: MiscApp.C:37
MiscApp
Definition: MiscApp.h:19
MiscTestApp
Definition: MiscTestApp.h:19
MiscTestApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s, bool use_test_objs=false)
Definition: MiscTestApp.C:35