C++ main module for stochmagnet Package  1.0
Public Member Functions | Static Public Member Functions | Protected Member Functions | Static Protected Member Functions | Private Member Functions | Private Attributes | Static Private Attributes | List of all members
CORE_Test Class Reference

This class is a Test class for Stoch Microm package. More...

#include <CORE_Test.h>

Inheritance diagram for CORE_Test:
Inheritance graph
[legend]
Collaboration diagram for CORE_Test:
Collaboration graph
[legend]

Public Member Functions

 CORE_Test (void)
 create More...
 
virtual ~CORE_Test (void)
 destroy More...
 
virtual tMemSize getMemorySize () const override
 return the memory size of the class More...
 
virtual tBoolean execute (const CORE_Run &runner, const std::map< tString, tString > &options) const
 execute the tests More...
 
void setName (const tString &name)
 set the test name More...
 
const tStringgetName () const
 get the test name More...
 
virtual tBoolean primaryTests (const CORE_Run &runner, const std::map< tString, tString > &options) const
 execute the primary tests More...
 
virtual tBoolean elementaryTests (const CORE_Run &runner, const std::map< tString, tString > &options) const
 execute the elementary tests More...
 
virtual tBoolean caseTests (const CORE_Run &runner, const std::map< tString, tString > &options) const
 execute the case tests More...
 
template<typename T , class I >
requires core_functions::isArithmeticType< T > tBoolean testArray (CORE_Array< T, I > &A) const
 
template<typename T , typename K , K D, class S , class I >
tBoolean testField (CORE_Field< T, K, D, S, I > &A) const
 
template<class T >
std::shared_ptr< T > getSharedPointer ()
 return the shared pointer for this More...
 
template<class T >
std::shared_ptr< const T > getConstSharedPointer () const
 return a const shared pointer for this More...
 
virtual tMemSize getContentsMemorySize () const
 return nthe memory size of the included associations More...
 
template<class T >
tBoolean isInstanceOf () const
 test if the clas T is an instance of this class More...
 
tString getClassName () const
 return the name of the class More...
 
tString getPointerString () const
 retrun the pointer of the class as a string More...
 
tString getIdentityString () const
 retrun the string identification of the class More...
 
virtual tString toString () const
 return the string representation of the object node More...
 

Static Public Member Functions

static CORE_UniquePointer< CORE_TestNew ()
 create a test class @retrun a new instance of the class More...
 
static tBoolean EnableMemoryStack (const tBoolean &isMemoryChecked)
 enable the memory stack More...
 
static void EnableMemoryStack ()
 enable the memory stack More...
 
static void DisableMemoryStack ()
 disable the memory stack More...
 
static tBoolean IsMemoryStackEnabled ()
 return trur if the memory stack is enabled More...
 
static tString MemoryStackToString ()
 get the memory stack in string More...
 
static tIndex GetRegisteredClassesNumber ()
 get the memory stack in string More...
 

Protected Member Functions

virtual void getSearchingPaths (std::vector< tString > &vpaths) const
 get the test path locations More...
 
tString getSearchingPathsToString () const
 get the test path locations into string More...
 
void getSearchingPaths (const tString &packageName, const tUSInt &nLevels, const std::vector< tString > &localPaths, std::vector< tString > &vpaths) const
 get the test path locations More...
 
tString searchPath (const tString &f) const
 retun the path where the file f is withing the searching paths list More...
 
tBoolean testCase (const CORE_Run &runner, const tString &name) const
 execute the test case More...
 
virtual tBoolean compareResults (const std::map< tString, tString > &options, const tString &resultFile, const tString &referenceFile, const tReal &eps) const
 make the difference between the two files More...
 
tBoolean testArray (const CORE_Run &runner, const std::map< tString, tString > &options) const
 test the numeric array More...
 
template<typename T , class I >
tBoolean uniformRandomTest (CORE_Array< T, I > &A, CORE_Array< T, I > &B) const
 randomizer test More...
 
tBoolean testField (const CORE_Run &runner, const std::map< tString, tString > &options) const
 test the numeric field More...
 
template<typename Q , class I >
requires core_functions::isArithmeticType< Q > tBoolean testArray (CORE_Array< Q, I > &A) const
 
template<typename Q , typename K , K D, class S , class I >
tBoolean testField (CORE_Field< Q, K, D, S, I > &A) const
 

Static Protected Member Functions

template<typename T , typename Q >
requires core_functions::isRealType< T > static core_functions::isRealType< Q > tBoolean Equals (const T &a, const Q &b)
 retrun true if the two values are equals More...
 
template<typename T , typename Q >
requires core_functions::isIntegerType< T > &&static core_functions::isIntegerType< Q > tBoolean Equals (const T &a, const Q &b)
 

Private Member Functions

tBoolean testTypes (const CORE_Run &runner, const std::map< tString, tString > &options) const
 test type More...
 
tBoolean testIO (const CORE_Run &runner, const std::map< tString, tString > &options) const
 test IO class More...
 
tBoolean testChrono (const CORE_Run &runner, const std::map< tString, tString > &options) const
 test Chrono class More...
 
tBoolean testMemorySize (const CORE_Run &runner, const std::map< tString, tString > &options)
 test memory size More...
 
tBoolean testStringsList (const CORE_Run &runner, const std::map< tString, tString > &options) const
 test the string array More...
 
tBoolean testLoops (const CORE_Run &runner, const std::map< tString, tString > &options) const
 test the string array More...
 
template<class T >
std::shared_ptr< T > setThis (std::unique_ptr< T, CORE_Object::Delete > &up)
 set the shared pointer from an unique pointer More...
 

Private Attributes

tString mName
 
std::weak_ptr< CORE_ObjectmThis
 

Static Private Attributes

static const tFlag ALL_TESTS =0
 
static const tFlag PRIMARY_TESTS =1
 
static const tFlag ELEMENTARY_TESTS =2
 
static const tFlag CASE_TESTS =3
 

Detailed Description

This class is a Test class for Stoch Microm package.

This class is a test class for core package.

Author
Stephane Despreaux
Version
2.0

The main method is the CORE_test::test() method.

Author
Stephane Despreaux
Version
1.0

Constructor & Destructor Documentation

◆ CORE_Test()

CORE_Test::CORE_Test ( void  )

create

References mName.

Referenced by New().

Here is the caller graph for this function:

◆ ~CORE_Test()

CORE_Test::~CORE_Test ( void  )
virtual

destroy

Member Function Documentation

◆ caseTests()

tBoolean CORE_Test::caseTests ( const CORE_Run runner,
const std::map< tString, tString > &  options 
) const
virtual

execute the case tests

Parameters
[in]runnerthe runner of the tests
[in]optionsthe options of the program
Returns
true if the tests have succeeded

Reimplemented in SM_Test.

Referenced by execute().

Here is the caller graph for this function:

◆ compareResults()

tBoolean CORE_Test::compareResults ( const std::map< tString, tString > &  options,
const tString resultFile,
const tString referenceFile,
const tReal eps 
) const
protectedvirtual

make the difference between the two files

Parameters
[in]optionsoptons of the program
[in]resultFileresult file generated by the program
[in]referenceFilereference file
[in]epstolerated error
Returns
true if the difference between two file are les than eps

Referenced by testCase().

Here is the caller graph for this function:

◆ DisableMemoryStack()

static void CORE_Object::DisableMemoryStack ( )
inlinestaticinherited

disable the memory stack

Referenced by CORE_Object::EnableMemoryStack().

Here is the caller graph for this function:

◆ elementaryTests()

tBoolean CORE_Test::elementaryTests ( const CORE_Run runner,
const std::map< tString, tString > &  options 
) const
virtual

execute the elementary tests

Parameters
[in]runnerthe runner of the tests
[in]optionsthe options of the program
Returns
true if the tests have succeeded

Reimplemented in SM_Test.

Referenced by execute().

Here is the caller graph for this function:

◆ EnableMemoryStack() [1/2]

static void CORE_Object::EnableMemoryStack ( )
inlinestaticinherited

enable the memory stack

Referenced by CORE_Object::EnableMemoryStack(), and CORE_Run::SetDebugOptions().

Here is the caller graph for this function:

◆ EnableMemoryStack() [2/2]

static tBoolean CORE_Object::EnableMemoryStack ( const tBoolean isMemoryChecked)
inlinestaticinherited

enable the memory stack

Parameters
[in]isMemoryChecked: true to verify memory allocation of CORE_Object classes
Returns
true if the memroy is checked

References CORE_Object::DisableMemoryStack(), CORE_Object::EnableMemoryStack(), and CORE_Object::IsMemoryStackEnabled().

Here is the call graph for this function:

◆ Equals() [1/2]

template<typename T , typename Q >
requires core_functions::isRealType<T> static core_functions::isRealType<Q> tBoolean CORE_Test::Equals ( const T &  a,
const Q &  b 
)
inlinestaticprotected

retrun true if the two values are equals

Parameters
[in]a: argument to compare
[in]b: argument to compare
Returns
true if a==b

Referenced by testArray(), and testField().

Here is the caller graph for this function:

◆ Equals() [2/2]

template<typename T , typename Q >
requires core_functions::isIntegerType<T>&& static core_functions::isIntegerType<Q> tBoolean CORE_Test::Equals ( const T &  a,
const Q &  b 
)
inlinestaticprotected

◆ execute()

tBoolean CORE_Test::execute ( const CORE_Run runner,
const std::map< tString, tString > &  options 
) const
virtual

execute the tests

Parameters
[in]runnerthe runner of the tests
[in]optionsthe options of the program

References ALL_TESTS, CASE_TESTS, caseTests(), ELEMENTARY_TESTS, elementaryTests(), CORE_Run::Out(), PRIMARY_TESTS, primaryTests(), tBoolean, testCase(), tFlag, and tString.

Referenced by CORE_Run::makeTests(), and SM_Run::makeTests().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getClassName()

tString CORE_Object::getClassName ( ) const
inlineinherited

return the name of the class

Returns
the string name of the class

Referenced by CORE_Object::getIdentityString(), and testTypes().

Here is the caller graph for this function:

◆ getConstSharedPointer()

template<class T >
std::shared_ptr<const T> CORE_Object::getConstSharedPointer ( ) const
inlineinherited

return a const shared pointer for this

Returns
the shared pointer as a type T

References CORE_Object::mThis.

◆ getContentsMemorySize()

virtual tMemSize CORE_Object::getContentsMemorySize ( ) const
inlinevirtualinherited

return nthe memory size of the included associations

Returns
the memory size of the storage in bytes 1 Kb = 1024 bytes 1 Mb = 1024 Kb 1 Gb = 1024 Mb 1 Tb = 1024 Gb 1 Hb = 1024 Tb

Reimplemented in CORE_VectorList< T, I >, CORE_VectorList< tString, CORE_StringsList >, CORE_ValArray< T, I >, CORE_ValArray< T, CORE_StdValArray< T > >, CORE_Run, CORE_PtrArray< T, I >, CORE_PtrArray< T, CORE_StdPtrArray< T > >, CORE_Field< T, K, D, S, I >, CORE_Field< T, K, D, CORE_StdPtrArray< T >, CORE_StdPtrField< T, K, D > >, CORE_Field< T, K, D, CORE_StdValArray< T >, CORE_StdValField< T, K, D > >, CORE_ClassFactory, SMS_STDUniformFunction, SMS_STDNormalFunction, SMS_BoostUniformFunction, SMS_BoostNormalFunction, SM_ZeemanOperator, SM_XDMF, SM_VTK, SM_System, SM_Output, SM_Operator, SM_Network, SM_DemagnetizedOperator, SM_Beam, CORE_StringsList, and CORE_Out.

Referenced by CORE_Out::getContentsMemorySize(), SM_Beam::getContentsMemorySize(), SM_Network::getContentsMemorySize(), SM_Operator::getContentsMemorySize(), SM_Output::getContentsMemorySize(), SM_System::getContentsMemorySize(), SM_VTK::getContentsMemorySize(), SMS_BoostNormalFunction::getContentsMemorySize(), SMS_BoostUniformFunction::getContentsMemorySize(), SMS_STDNormalFunction::getContentsMemorySize(), SMS_STDUniformFunction::getContentsMemorySize(), CORE_ClassFactory::getContentsMemorySize(), CORE_PtrArray< T, I >::getContentsMemorySize(), CORE_ValArray< T, I >::getContentsMemorySize(), CORE_VectorList< T, I >::getContentsMemorySize(), CORE_Object::getMemorySize(), SM_ConstantNoiseRateFunction::getMemorySize(), SM_InverseNoiseRateFunction::getMemorySize(), SM_LandauLifschitzFunction::getMemorySize(), SM_NoiseRateFunction::getMemorySize(), SM_Object::getMemorySize(), SM_StochasticFunction::getMemorySize(), SM_TemplatedNoiseRateFunction< DerivedClass >::getMemorySize(), SM_TimeStepper::getMemorySize(), SMS_BoostRandomFunction::getMemorySize(), CORE_Array< T, I >::getMemorySize(), CORE_Chrono::getMemorySize(), CORE_Collection< T, I >::getMemorySize(), CORE_IO::getMemorySize(), CORE_List< T, K, I >::getMemorySize(), CORE_OptionsReader::getMemorySize(), CORE_OutputFile::getMemorySize(), and getMemorySize().

Here is the caller graph for this function:

◆ getIdentityString()

tString CORE_Object::getIdentityString ( ) const
inlineinherited

retrun the string identification of the class

Returns
the string identity of the class

References CORE_Object::getClassName(), and core_functions::pointerToString().

Referenced by testArray(), testField(), testTypes(), CORE_Object::toString(), CORE_ClassFactory::toString(), and CORE_Field< T, K, D, S, I >::toString().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getMemorySize()

virtual tMemSize CORE_Test::getMemorySize ( ) const
inlineoverridevirtual

return the memory size of the class

Returns
the memory size of the class in bytes 1 octet = 1 byte 1 Ko = 1024 bytes 1 Mo = 1024 Ko 1 Go = 1024 Mo

Reimplemented from CORE_Object.

References CORE_Object::getContentsMemorySize().

Here is the call graph for this function:

◆ getName()

const tString& CORE_Test::getName ( ) const
inline

get the test name

Returns
name of the test

References mName.

◆ getPointerString()

tString CORE_Object::getPointerString ( ) const
inlineinherited

retrun the pointer of the class as a string

Returns
the pointer of the calss as a string

References core_functions::pointerToString().

Here is the call graph for this function:

◆ GetRegisteredClassesNumber()

static tIndex CORE_Object::GetRegisteredClassesNumber ( )
inlinestaticinherited

get the memory stack in string

Returns
the string representation of the memory stack

◆ getSearchingPaths() [1/2]

void CORE_Test::getSearchingPaths ( const tString packageName,
const tUSInt nLevels,
const std::vector< tString > &  localPaths,
std::vector< tString > &  vpaths 
) const
protected

get the test path locations

Parameters
[in]packageName: package name
[in]nLevels: the levels number
[in]localPaths: the local paths for test
[out]vpaths: the return path location

References tString, and tUSInt.

◆ getSearchingPaths() [2/2]

virtual void CORE_Test::getSearchingPaths ( std::vector< tString > &  vpaths) const
inlineprotectedvirtual

get the test path locations

Parameters
[out]vpaths: the return path location

Reimplemented in SM_Test.

Referenced by SM_Test::getSearchingPaths(), getSearchingPathsToString(), and searchPath().

Here is the caller graph for this function:

◆ getSearchingPathsToString()

tString CORE_Test::getSearchingPathsToString ( ) const
protected

get the test path locations into string

Returns
all the sarching path in string

References getSearchingPaths().

Referenced by testCase(), and testIO().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getSharedPointer()

template<class T >
std::shared_ptr<T> CORE_Object::getSharedPointer ( )
inlineinherited

return the shared pointer for this

Returns
the shared pointer as a type T

References CORE_Object::mThis.

◆ isInstanceOf()

template<class T >
tBoolean CORE_Object::isInstanceOf ( ) const
inlineinherited

test if the clas T is an instance of this class

Returns
true if the object is an instance of T

Referenced by SM_Beam::templatedSimulate().

Here is the caller graph for this function:

◆ IsMemoryStackEnabled()

static tBoolean CORE_Object::IsMemoryStackEnabled ( )
inlinestaticinherited

return trur if the memory stack is enabled

Referenced by CORE_Object::EnableMemoryStack(), and main().

Here is the caller graph for this function:

◆ MemoryStackToString()

static tString CORE_Object::MemoryStackToString ( )
inlinestaticinherited

get the memory stack in string

Returns
the string representation of the memory stack

Referenced by main().

Here is the caller graph for this function:

◆ New()

static CORE_UniquePointer<CORE_Test> CORE_Test::New ( )
inlinestatic

create a test class @retrun a new instance of the class

References CORE_Test().

Here is the call graph for this function:

◆ primaryTests()

tBoolean CORE_Test::primaryTests ( const CORE_Run runner,
const std::map< tString, tString > &  options 
) const
virtual

execute the primary tests

Parameters
[in]runnerthe runner of the tests
[in]optionsthe options of the program
Returns
true if the tests have succeeded

Reimplemented in SM_Test.

References CORE_Run::InitSeed(), CORE_Run::Out(), tBoolean, testArray(), testChrono(), testField(), testIO(), testLoops(), testStringsList(), and testTypes().

Referenced by execute().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ searchPath()

tString CORE_Test::searchPath ( const tString f) const
protected

retun the path where the file f is withing the searching paths list

Parameters
[in]f: file to search
Returns
the path form the current exceutable file where the file f is

References getSearchingPaths().

Referenced by SM_Test::grid3DParticlesTestCase(), SM_Test::linedParticlesTestCase(), testCase(), and testIO().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ setName()

void CORE_Test::setName ( const tString name)
inline

set the test name

Parameters
[in]namename of the test

References mName.

◆ setThis()

template<class T >
std::shared_ptr<T> CORE_Object::setThis ( std::unique_ptr< T, CORE_Object::Delete > &  up)
inlineprivateinherited

set the shared pointer from an unique pointer

Parameters
[in,out]upunique pointer of the class at input, points to null pointer at output
Returns
the shared pointer of the class

Method only calledby the friend class CORE_ClassFactory::NewSharedInstance()

References CORE_Object::mThis.

◆ testArray() [1/3]

tBoolean CORE_Test::testArray ( const CORE_Run runner,
const std::map< tString, tString > &  options 
) const
protected

test the numeric array

Parameters
[in]runnerthe runner of the tests
[in]optionsthe options of the program

References tBoolean.

Referenced by primaryTests().

Here is the caller graph for this function:

◆ testArray() [2/3]

template<typename Q , class I >
requires core_functions::isArithmeticType<Q> tBoolean CORE_Test::testArray ( CORE_Array< Q, I > &  A) const
protected

◆ testArray() [3/3]

template<typename T , class I >
requires core_functions::isArithmeticType<T> tBoolean CORE_Test::testArray ( CORE_Array< T, I > &  A) const

◆ testCase()

tBoolean CORE_Test::testCase ( const CORE_Run runner,
const tString name 
) const
protected

execute the test case

Parameters
[in]runner: runner of the test
[in]namename of the case which must correspond the same local path
Returns
true if the tests have succeeded
  • reads the options file 'options.txt' within the local test case path with name 'name'
  • the current path becomes the path where the options file is
  • executes the program. If it fails return false
  • reads the tolerance error in 'eps' key value within options
  • reads the output path from 'output-path' key value within options
  • reads the reference path from 'reference-path' key value within options
  • reads the output file 'output-file' key value within options
  • reads the prefix from 'prefix' key value within options
  • make the difference betwen the result file and the refence file

References compareResults(), getSearchingPathsToString(), CORE_Run::makeRun(), CORE_Run::Out(), CORE_OptionsReader::ReadOptions(), CORE_OptionsReader::ReadPath(), searchPath(), CORE_Run::SetDebugOptions(), CORE_Run::SetOutputOptions(), tBoolean, tReal, and tString.

Referenced by execute().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ testChrono()

tBoolean CORE_Test::testChrono ( const CORE_Run runner,
const std::map< tString, tString > &  options 
) const
private

test Chrono class

Parameters
[in]runnerthe runner of the tests
[in]optionsthe options of the program
Returns
true if the tests have succeeded

References CORE_Chrono::ConvertDuration(), CORE_Chrono::start(), CORE_Chrono::stop(), tIndex, tReal, tUInt, tUSInt, and CORE_StdValArray< T >::UniformRandomize().

Referenced by primaryTests().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ testField() [1/3]

tBoolean CORE_Test::testField ( const CORE_Run runner,
const std::map< tString, tString > &  options 
) const
protected

test the numeric field

Parameters
[in]runnerthe runner of the tests
[in]optionsthe options of the program

References tBoolean.

Referenced by primaryTests().

Here is the caller graph for this function:

◆ testField() [2/3]

template<typename Q , typename K , K D, class S , class I >
tBoolean CORE_Test::testField ( CORE_Field< Q, K, D, S, I > &  A) const
protected

◆ testField() [3/3]

template<typename T , typename K , K D, class S , class I >
tBoolean CORE_Test::testField ( CORE_Field< T, K, D, S, I > &  A) const

◆ testIO()

tBoolean CORE_Test::testIO ( const CORE_Run runner,
const std::map< tString, tString > &  options 
) const
private

test IO class

Parameters
[in]runnerthe runner of the tests
[in]optionsthe options of the program
Returns
true if the tests have succeeded

References CORE_IO::CreatePath(), CORE_IO::GetBaseName(), CORE_IO::GetExtension(), CORE_IO::GetFiles(), CORE_IO::GetPath(), CORE_IO::GetPaths(), getSearchingPathsToString(), CORE_Run::Out(), CORE_IO::RemovePath(), searchPath(), tBoolean, and tString.

Referenced by primaryTests().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ testLoops()

tBoolean CORE_Test::testLoops ( const CORE_Run runner,
const std::map< tString, tString > &  options 
) const
private

test the string array

Parameters
[in]runnerthe runner of the tests
[in]optionsthe options of the program

References CORE_Chrono::ConvertDuration(), CORE_Chrono::start(), CORE_Chrono::stop(), tIndex, tReal, tULLInt, and CORE_StdValArray< T >::UniformRandomize().

Referenced by primaryTests().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ testMemorySize()

tBoolean CORE_Test::testMemorySize ( const CORE_Run runner,
const std::map< tString, tString > &  options 
)
private

test memory size

Parameters
[in]runnerthe runner of the tests
[in]optionsthe options of the program

References CORE_Object::CORE_Object(), CORE_Run::Out(), tFlag, tString, and tUCInt.

Here is the call graph for this function:

◆ testStringsList()

tBoolean CORE_Test::testStringsList ( const CORE_Run runner,
const std::map< tString, tString > &  options 
) const
private

test the string array

Parameters
[in]runnerthe runner of the tests
[in]optionsthe options of the program

References CORE_VectorList< T, I >::getSize(), CORE_List< T, K, I >::sort(), tBoolean, and tIndex.

Referenced by primaryTests().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ testTypes()

tBoolean CORE_Test::testTypes ( const CORE_Run runner,
const std::map< tString, tString > &  options 
) const
private

test type

Parameters
[in]runnerthe runner of the tests
[in]optionsthe options of the program
Returns
true if the tests have succeeded

References CORE_Object::getClassName(), CORE_Object::getIdentityString(), CORE_Run::Is32Architecture(), CORE_Run::Is64Architecture(), core_functions::max(), core_functions::min(), CORE_Run::Out(), tBoolean, tChar, tComplex, tDouble, tFlag, tFloat, tIndex, tInt, tInteger, tLDouble, tLInt, tLLInt, tMemSize, tReal, tRelativeIndex, tRelativeInteger, tSInt, tString, tUChar, tUInt, tULInt, tULLInt, and tUSInt.

Referenced by primaryTests().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ toString()

virtual tString CORE_Object::toString ( ) const
inlinevirtualinherited

◆ uniformRandomTest()

template<typename T , class I >
tBoolean CORE_Test::uniformRandomTest ( CORE_Array< T, I > &  A,
CORE_Array< T, I > &  B 
) const
protected

randomizer test

Parameters
[out]A: first array for testing
[out]B: second array for testing

References CORE_Chrono::ConvertDuration(), CORE_Collection< T, I >::setSize(), CORE_Chrono::start(), CORE_Chrono::stop(), CORE_Array< T, I >::sum(), tBoolean, tIndex, CORE_Array< T, I >::transform(), tReal, tULLInt, and CORE_Array< T, I >::uniformRandomize().

Here is the call graph for this function:

Member Data Documentation

◆ ALL_TESTS

const tFlag CORE_Test::ALL_TESTS =0
staticprivate

Referenced by execute().

◆ CASE_TESTS

const tFlag CORE_Test::CASE_TESTS =3
staticprivate

Referenced by execute().

◆ ELEMENTARY_TESTS

const tFlag CORE_Test::ELEMENTARY_TESTS =2
staticprivate

Referenced by execute().

◆ mName

tString CORE_Test::mName
private

Referenced by CORE_Test(), getName(), and setName().

◆ mThis

std::weak_ptr<CORE_Object> CORE_Object::mThis
privateinherited

◆ PRIMARY_TESTS

const tFlag CORE_Test::PRIMARY_TESTS =1
staticprivate

Referenced by execute().


The documentation for this class was generated from the following files: