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

#include <TensorMechanicsTestApp.h>

Inheritance diagram for TensorMechanicsTestApp:
[legend]

Public Member Functions

 TensorMechanicsTestApp (InputParameters parameters)
 
virtual ~TensorMechanicsTestApp ()
 

Static Public Member Functions

static InputParameters validParams ()
 
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 TensorMechanicsTestApp.h.

Constructor & Destructor Documentation

◆ TensorMechanicsTestApp()

TensorMechanicsTestApp::TensorMechanicsTestApp ( InputParameters  parameters)

Definition at line 27 of file TensorMechanicsTestApp.C.

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

◆ ~TensorMechanicsTestApp()

TensorMechanicsTestApp::~TensorMechanicsTestApp ( )
virtual

Definition at line 33 of file TensorMechanicsTestApp.C.

33 {}

Member Function Documentation

◆ associateSyntax()

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

Definition at line 59 of file TensorMechanicsTestApp.C.

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

Referenced by CombinedTestApp::associateSyntax().

◆ registerAll()

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

Definition at line 36 of file TensorMechanicsTestApp.C.

37 {
39  if (use_test_objs)
40  {
41  Registry::registerObjectsTo(f, {"TensorMechanicsTestApp"});
42  Registry::registerActionsTo(af, {"TensorMechanicsTestApp"});
43  }
44 }

Referenced by CombinedTestApp::registerAll(), TensorMechanicsTestApp(), and TensorMechanicsTestApp__registerAll().

◆ registerApps()

void TensorMechanicsTestApp::registerApps ( )
static

Definition at line 46 of file TensorMechanicsTestApp.C.

47 {
48  registerApp(TensorMechanicsApp);
49  registerApp(TensorMechanicsTestApp);
50 }

Referenced by main(), and TensorMechanicsTestApp__registerApps().

◆ registerExecFlags()

void TensorMechanicsTestApp::registerExecFlags ( Factory &  factory)
static

Definition at line 65 of file TensorMechanicsTestApp.C.

66 {
67 }

Referenced by CombinedTestApp::registerExecFlags().

◆ registerObjects()

void TensorMechanicsTestApp::registerObjects ( Factory &  factory)
static

Definition at line 53 of file TensorMechanicsTestApp.C.

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

Referenced by CombinedTestApp::registerObjects().

◆ validParams()

InputParameters TensorMechanicsTestApp::validParams ( )
static

Definition at line 19 of file TensorMechanicsTestApp.C.

20 {
21  InputParameters params = TensorMechanicsApp::validParams();
22  return params;
23 }

The documentation for this class was generated from the following files:
TensorMechanicsApp
Definition: TensorMechanicsApp.h:19
TensorMechanicsApp::validParams
static InputParameters validParams()
Definition: TensorMechanicsApp.C:18
TensorMechanicsApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: TensorMechanicsApp.C:81
TensorMechanicsTestApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s, bool use_test_objs=false)
Definition: TensorMechanicsTestApp.C:36
TensorMechanicsTestApp
Definition: TensorMechanicsTestApp.h:19