Go to the source code of this file.
◆ TEST_EQUALITY_CONST
| #define TEST_EQUALITY_CONST |
( |
| v1, |
|
|
| v2 ) |
Value:
#define TEUCHOS_TEST_EQUALITY_CONST(v1, v2, out, success)
Test that an object is equal to a given constant.
Definition at line 67 of file Tuple_test.cpp.
◆ TEST_EQUALITY
| #define TEST_EQUALITY |
( |
| v1, |
|
|
| v2 ) |
Value:
#define TEUCHOS_TEST_EQUALITY(v1, v2, out, success)
Test that two values are equal.
Definition at line 70 of file Tuple_test.cpp.
◆ TEST_ITER_EQUALITY
| #define TEST_ITER_EQUALITY |
( |
| iter1, |
|
|
| iter2 ) |
Value:
#define TEUCHOS_TEST_ITER_EQUALITY(iter1, iter2, out, success)
Test if two iterators are equal.
Definition at line 73 of file Tuple_test.cpp.
◆ TEST_ARRAY_ELE_EQUALITY
| #define TEST_ARRAY_ELE_EQUALITY |
( |
| a, |
|
|
| i, |
|
|
| val ) |
Value:
#define TEUCHOS_TEST_ARRAY_ELE_EQUALITY(a, i, val, printPass, out, success)
Test that an array element value is equal to a given constant.
Definition at line 76 of file Tuple_test.cpp.
◆ TEST_COMPARE
| #define TEST_COMPARE |
( |
| v1, |
|
|
| comp, |
|
|
| v2 ) |
Value:
#define TEUCHOS_TEST_COMPARE(v1, comp, v2, out, success)
Compare two objects using an input comparsion operator.
Definition at line 79 of file Tuple_test.cpp.
◆ TEST_COMPARE_ARRAYS
| #define TEST_COMPARE_ARRAYS |
( |
| a1, |
|
|
| a2 ) |
Value: { \
const bool result = compareArrays(a1,#a1,a2,#a2,out); \
if (!result) success = false; \
}
Definition at line 82 of file Tuple_test.cpp.
◆ TEST_THROW
| #define TEST_THROW |
( |
| code, |
|
|
| ExceptType ) |
Value:
#define TEUCHOS_TEST_THROW(code, ExceptType, out, success)
Test that the chunk of code 'code' throws an expected exception.
Definition at line 88 of file Tuple_test.cpp.
◆ TEST_NOTHROW
| #define TEST_NOTHROW |
( |
| code | ) |
|
Value:
#define TEUCHOS_TEST_NOTHROW(code, out, success)
Test that a chunk of code does not throw any exceptions.
Definition at line 91 of file Tuple_test.cpp.
◆ testTuple()
◆ main()
| int main |
( |
int | argc, |
|
|
char * | argv[] ) |