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

#include <PhaseFieldTestApp.h>

Inheritance diagram for PhaseFieldTestApp:
[legend]

Public Member Functions

 PhaseFieldTestApp (InputParameters parameters)
 
virtual ~PhaseFieldTestApp ()
 

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

Constructor & Destructor Documentation

◆ PhaseFieldTestApp()

PhaseFieldTestApp::PhaseFieldTestApp ( InputParameters  parameters)

Definition at line 28 of file PhaseFieldTestApp.C.

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

◆ ~PhaseFieldTestApp()

PhaseFieldTestApp::~PhaseFieldTestApp ( )
virtual

Definition at line 34 of file PhaseFieldTestApp.C.

34 {}

Member Function Documentation

◆ associateSyntax()

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

Definition at line 61 of file PhaseFieldTestApp.C.

62 {
63  Registry::registerActionsTo(action_factory, {"PhaseFieldTestApp"});
64 }

Referenced by CombinedTestApp::associateSyntax().

◆ registerAll()

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

Definition at line 37 of file PhaseFieldTestApp.C.

38 {
40  if (use_test_objs)
41  {
42  Registry::registerObjectsTo(f, {"PhaseFieldTestApp"});
43  Registry::registerActionsTo(af, {"PhaseFieldTestApp"});
44  }
45 }

Referenced by PhaseFieldTestApp(), PhaseFieldTestApp__registerAll(), and CombinedTestApp::registerAll().

◆ registerApps()

void PhaseFieldTestApp::registerApps ( )
static

Definition at line 48 of file PhaseFieldTestApp.C.

49 {
50  registerApp(PhaseFieldApp);
51  registerApp(PhaseFieldTestApp);
52 }

Referenced by main(), and PhaseFieldTestApp__registerApps().

◆ registerExecFlags()

void PhaseFieldTestApp::registerExecFlags ( Factory &  factory)
static

Definition at line 67 of file PhaseFieldTestApp.C.

68 {
69 }

Referenced by CombinedTestApp::registerExecFlags().

◆ registerObjects()

void PhaseFieldTestApp::registerObjects ( Factory &  factory)
static

Definition at line 55 of file PhaseFieldTestApp.C.

56 {
57  Registry::registerObjectsTo(factory, {"PhaseFieldTestApp"});
58 }

Referenced by CombinedTestApp::registerObjects().


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