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

#include <PorousFlowTestApp.h>

Inheritance diagram for PorousFlowTestApp:
[legend]

Public Member Functions

 PorousFlowTestApp (InputParameters parameters)
 
virtual ~PorousFlowTestApp ()
 

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 PorousFlowTestApp.h.

Constructor & Destructor Documentation

◆ PorousFlowTestApp()

PorousFlowTestApp::PorousFlowTestApp ( InputParameters  parameters)

Definition at line 26 of file PorousFlowTestApp.C.

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

◆ ~PorousFlowTestApp()

PorousFlowTestApp::~PorousFlowTestApp ( )
virtual

Definition at line 32 of file PorousFlowTestApp.C.

32 {}

Member Function Documentation

◆ associateSyntax()

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

Definition at line 59 of file PorousFlowTestApp.C.

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

Referenced by CombinedTestApp::associateSyntax().

◆ registerAll()

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

Definition at line 35 of file PorousFlowTestApp.C.

36 {
38  if (use_test_objs)
39  {
40  Registry::registerObjectsTo(f, {"PorousFlowTestApp"});
41  Registry::registerActionsTo(af, {"PorousFlowTestApp"});
42  }
43 }

Referenced by PorousFlowTestApp(), PorousFlowTestApp__registerAll(), and CombinedTestApp::registerAll().

◆ registerApps()

void PorousFlowTestApp::registerApps ( )
static

Definition at line 46 of file PorousFlowTestApp.C.

47 {
48  registerApp(PorousFlowApp);
49  registerApp(PorousFlowTestApp);
50 }

Referenced by main(), and PorousFlowTestApp__registerApps().

◆ registerExecFlags()

void PorousFlowTestApp::registerExecFlags ( Factory &  factory)
static

Definition at line 65 of file PorousFlowTestApp.C.

66 {
67 }

Referenced by CombinedTestApp::registerExecFlags().

◆ registerObjects()

void PorousFlowTestApp::registerObjects ( Factory &  factory)
static

Definition at line 53 of file PorousFlowTestApp.C.

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

Referenced by CombinedTestApp::registerObjects().


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