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

#include <LevelSetTestApp.h>

Inheritance diagram for LevelSetTestApp:
[legend]

Public Member Functions

 LevelSetTestApp (InputParameters parameters)
 
virtual ~LevelSetTestApp ()
 

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

Constructor & Destructor Documentation

◆ LevelSetTestApp()

LevelSetTestApp::LevelSetTestApp ( InputParameters  parameters)

Definition at line 26 of file LevelSetTestApp.C.

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

◆ ~LevelSetTestApp()

LevelSetTestApp::~LevelSetTestApp ( )
virtual

Definition at line 33 of file LevelSetTestApp.C.

33 {}

Member Function Documentation

◆ associateSyntax()

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

Definition at line 60 of file LevelSetTestApp.C.

61 {
62  Registry::registerActionsTo(action_factory, {"LevelSetTestApp"});
63 }

Referenced by CombinedTestApp::associateSyntax().

◆ registerAll()

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

Definition at line 36 of file LevelSetTestApp.C.

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

Referenced by LevelSetTestApp(), LevelSetTestApp__registerAll(), and CombinedTestApp::registerAll().

◆ registerApps()

void LevelSetTestApp::registerApps ( )
static

Definition at line 47 of file LevelSetTestApp.C.

48 {
49  registerApp(LevelSetApp);
50  registerApp(LevelSetTestApp);
51 }

Referenced by LevelSetTestApp__registerApps(), and main().

◆ registerExecFlags()

void LevelSetTestApp::registerExecFlags ( Factory &  factory)
static

Definition at line 66 of file LevelSetTestApp.C.

67 {
68 }

Referenced by CombinedTestApp::registerExecFlags().

◆ registerObjects()

void LevelSetTestApp::registerObjects ( Factory &  factory)
static

Definition at line 54 of file LevelSetTestApp.C.

55 {
56  Registry::registerObjectsTo(factory, {"LevelSetTestApp"});
57 }

Referenced by CombinedTestApp::registerObjects().


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