https://mooseframework.inl.gov
SolidPropertiesTestApp.C
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
10 #include "SolidPropertiesApp.h"
11 #include "Moose.h"
12 #include "AppFactory.h"
13 #include "MooseSyntax.h"
14 
17 {
19  return params;
20 }
21 
23  : MooseApp(parameters)
24 {
26  _factory, _action_factory, _syntax, getParam<bool>("allow_test_objects"));
27 }
28 
30 
31 void
33 {
35  if (use_test_objs)
36  {
37  Registry::registerObjectsTo(f, {"SolidPropertiesTestApp"});
38  Registry::registerActionsTo(af, {"SolidPropertiesTestApp"});
39  }
40 }
41 
42 void
44 {
46  registerApp(SolidPropertiesTestApp);
47 }
48 
49 /***************************************************************************************************
50  *********************** Dynamic Library Entry Points - DO NOT MODIFY ******************************
51  **************************************************************************************************/
52 // External entry point for dynamic application loading
53 extern "C" void
55 {
57 }
58 extern "C" void
60 {
62 }
static InputParameters validParams()
SolidPropertiesTestApp(const InputParameters &parameters)
static void registerObjectsTo(Factory &f, const std::set< std::string > &labels)
Syntax _syntax
static void registerAll(Factory &f, ActionFactory &af, Syntax &s, bool use_test_objs=false)
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
static InputParameters validParams()
static void registerActionsTo(ActionFactory &f, const std::set< std::string > &labels)
Real f(Real x)
Test function for Brents method.
ActionFactory _action_factory
void SolidPropertiesTestApp__registerApps()
static void registerApps()
void SolidPropertiesTestApp__registerAll(Factory &f, ActionFactory &af, Syntax &s)
Factory _factory