Teuchos Package Browser (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Namespaces | Macros | Functions | Variables
ParameterList_SerializationTest.cpp File Reference
#include "Teuchos_ParameterList.hpp"
#include "Teuchos_UnitTestHarness.hpp"
#include "Teuchos_StandardParameterEntryXMLConverters.hpp"
#include "Teuchos_XMLParameterListCoreHelpers.hpp"
#include "Teuchos_XMLParameterListWriter.hpp"
#include "Teuchos_as.hpp"
#include "Teuchos_XMLParameterListExceptions.hpp"
#include "Teuchos_ValidatorXMLConverterDB.hpp"
#include "Teuchos_StandardValidatorXMLConverters.hpp"
#include "Teuchos_StringInputStream.hpp"
#include "Teuchos_XMLParser.hpp"
#include "Teuchos_TwoDArray.hpp"
#include "Teuchos_XMLParameterListTestHelpers.hpp"
Include dependency graph for ParameterList_SerializationTest.cpp:

Go to the source code of this file.

Namespaces

 Teuchos
 

Macros

#define ADD_TYPE_PARAMETER(T, VALUE)   myList.set( #T , as<T>(VALUE));
 
#define ADD_ARRAY_TYPE_PARAMETER(T, VALUE)
 
#define ADD_TYPE_AND_ARRAY_TYPE_PARAMETER(T, VALUE)
 

Functions

 Teuchos::TEUCHOS_UNIT_TEST (Teuchos_ParameterList, ADD_TYPE_AND_ARRAY_TYPE_PARAMETER)
 
 Teuchos::TEUCHOS_UNIT_TEST (Teuchos_ParameterList, parameterEntryXMLConverters)
 
 Teuchos::TEUCHOS_UNIT_TEST (Teuchos_ParameterList, parameterEntryConverterExceptions)
 

Variables

const int Teuchos::g_arraySize = 5
 

Macro Definition Documentation

#define ADD_TYPE_PARAMETER (   T,
  VALUE 
)    myList.set( #T , as<T>(VALUE));

Definition at line 61 of file ParameterList_SerializationTest.cpp.

#define ADD_ARRAY_TYPE_PARAMETER (   T,
  VALUE 
)
Value:
myList.set( #T " Array", Array< T >(g_arraySize, ( T ) VALUE ));\
myList.set( #T " 2DArray", TwoDArray< T >(g_arraySize, g_arraySize, ( T ) VALUE ));

Definition at line 64 of file ParameterList_SerializationTest.cpp.

#define ADD_TYPE_AND_ARRAY_TYPE_PARAMETER (   T,
  VALUE 
)
Value:
#define ADD_ARRAY_TYPE_PARAMETER(T, VALUE)
#define ADD_TYPE_PARAMETER(T, VALUE)

Definition at line 67 of file ParameterList_SerializationTest.cpp.