|
| #define | BASIC_DEPENDENCY_TEST(DEPENDENCY, DEPTYPE, NUM_DEPENDEES, NUM_DEPENDENTS) |
| |
| #define | VERIFY_DEPENDENT(DEPENDENCY, DEPENDENT) |
| |
| #define | VERIFY_DEPENDEE(DEPENDENCY, DEPENDEE) |
| |
| #define | CREATE_DEPENDEE(POSTFIX, VALUE) |
| |
| #define | CREATE_DEPENDENT(POSTFIX, VALUE) |
| |
| #define | EXCEPTION_TEST_BOILERPLATE(DEPENDEE_VAL, DEPENDENT_VAL) |
| |
| #define | CONVERT_DEP_TO_XML(DEPENDENCY) |
| |
| #define | TOO_MANY_DEPENDEE_TEST(DEPENDENCY) |
| |
| #define | COPY_DEPTAG_WITHOUT_CHILD(TAG, CHILDTAG, NEWTAG) |
| |
| #define | INSERT_VALIDATOR_TO_MAPS(VALIDATOR) |
| |
| #define | NUMBER_VIS_TEST(T) |
| |
| #define | ArrayModifierTest(DEPENDENCYTYPE, ARRAY_TYPE) |
| |
| #define | NUM_ARRAY_LENGTH_TEST(DependeeType, DependentType) |
| |
| #define | NUM_ARRAY_LENGTH_TEST_GROUP(DependeeType) |
| |
| #define | TWODROW_TEST(DependeeType, DependentType) |
| |
| #define | TWODROW_TEST_GROUP(DependeeType) |
| |
| #define | TWODCOL_TEST(DependeeType, DependentType) |
| |
| #define | TWODCOL_TEST_GROUP(DependeeType) |
| |
| #define | RANGE_VALIDATOR_TEST(T) |
| |
|
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, SerializationTestMacros) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, StringVisualDepSerialization) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, BoolVisualDepSerialization) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (Teuchos_Dependencies, NumberVisualDepSerialization, T) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, ConditionVisualDepSerialization) |
| |
| | Teuchos::ArrayModifierTest (NumberArrayLengthDependency, Array) ArrayModifierTest(TwoDRowDependency |
| |
| | Teuchos::ArrayModifierTest (TwoDColDependency, TwoDArray) TEUCHOS_UNIT_TEST(Teuchos_Dependencies |
| |
| myDepList | Teuchos::set (dependee1, "val1") |
| |
| myDepList | Teuchos::set (dependee2, "val2") |
| |
| myDepList | Teuchos::set (dependent1, 2.0) |
| |
| myDepList | Teuchos::set (dependent2, 3.0) |
| |
| dependentList | Teuchos::insert (myDepList.getEntryRCP(dependent1)) |
| |
| dependentList | Teuchos::insert (myDepList.getEntryRCP(dependent2)) |
| |
| myDepSheet | Teuchos::addDependency (basicStringValiDep) |
| |
| myDepSheet | Teuchos::addDependency (complexStringValiDep) |
| |
| | Teuchos::BASIC_DEPENDENCY_TEST (readinDep1, StringValidatorDependency, 1, 1) |
| |
| | Teuchos::VERIFY_DEPENDEE (readinDep1, readinDependee1) |
| |
| | Teuchos::VERIFY_DEPENDENT (readinDep1, readinDependent1) |
| |
| | Teuchos::BASIC_DEPENDENCY_TEST (readinDep2, StringValidatorDependency, 1, 2) |
| |
| | Teuchos::VERIFY_DEPENDEE (readinDep2, readinDependee2) |
| |
| | Teuchos::VERIFY_DEPENDENT (readinDep2, readinDependent1) |
| |
| | Teuchos::VERIFY_DEPENDENT (readinDep2, readinDependent2) |
| |
| | Teuchos::TEST_ASSERT (castedDep1->getValuesAndValidators().size()==2) |
| |
| | Teuchos::TEST_ASSERT (castedDep2->getValuesAndValidators().size()==2) |
| |
| | Teuchos::TEST_ASSERT (castedDep1->getDefaultValidator().is_null()) |
| |
| | Teuchos::TEST_ASSERT (nonnull(castedDep2->getDefaultValidator())) |
| |
| | Teuchos::TEST_EQUALITY (rcp_dynamic_cast< const EnhancedNumberValidator< double > >(castedDep1->getValuesAndValidators().find("val1") ->second, true) ->getMax(), double1Vali->getMax()) |
| |
| | Teuchos::TEST_EQUALITY (rcp_dynamic_cast< const EnhancedNumberValidator< double > >(castedDep2->getValuesAndValidators().find("val1") ->second, true) ->getMax(), double1Vali->getMax()) |
| |
| | Teuchos::TEST_EQUALITY (rcp_dynamic_cast< const EnhancedNumberValidator< double > >(castedDep1->getValuesAndValidators().find("val2") ->second, true) ->getMax(), double2Vali->getMax()) |
| |
| | Teuchos::TEST_EQUALITY (rcp_dynamic_cast< const EnhancedNumberValidator< double > >(castedDep2->getValuesAndValidators().find("val2") ->second, true) ->getMax(), double2Vali->getMax()) |
| |
| | Teuchos::TEST_EQUALITY (rcp_dynamic_cast< const EnhancedNumberValidator< double > >(castedDep2->getDefaultValidator(), true) ->getMax(), defaultVali->getMax()) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, BoolValidatorDepSerialization) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (Teuchos_Dependencies, RangeValidatorDepSerialization, T) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, DependencySerializationExceptions) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, NumberVisualDepSerializationExceptions) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, BoolVisualDepSerializationExceptions) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, StringVisualDepSerializationExceptions) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, ConditionVisualDepSerializationExceptions) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, BoolValidatorDepSerializationExceptions) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, StringValidatorDepSerializationExceptions) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, RangeValidatorDepSerializationExceptions) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, NumArrayLengthDepSerializationExceptions) |
| |
| | Teuchos::TEUCHOS_UNIT_TEST (Teuchos_Dependencies, DepSheetTests) |
| |