@@ -115,7 +115,9 @@ function results() result(test_results)
115115 ,check_and_with_vector_operands_ptr = > check_and_with_vector_operands &
116116 ,check_string_concatentation_ptr = > check_string_concatentation &
117117 ,check_character_concatentation_ptr = > check_character_concatentation &
118- ,check_expects_logical_ptr = > check_expects_logical
118+ ,check_expects_logical_ptr = > check_expects_logical &
119+ ,check_assigns_logical_ptr = > check_assigns_logical &
120+ ,check_passing_test_function_ptr = > check_passing_test_function
119121
120122 test_descriptions = [ &
121123 test_description_t(" construction from the real expression 'x .approximates. y .within. tolerance'" , check_approximates_real_ptr) &
@@ -144,6 +146,8 @@ function results() result(test_results)
144146 ,test_description_t(" construction from string concatenation" , check_string_concatentation_ptr) &
145147 ,test_description_t(" construction from character concatenation" , check_character_concatentation_ptr) &
146148 ,test_description_t(" construction from (.expects. logical-expression) // 'user-defined message'" , check_expects_logical_ptr) &
149+ ,test_description_t(" defining a test_diagnosis_t object by assigning a logical value" , check_assigns_logical_ptr) &
150+ ,test_description_t(" hardwiring a test to pass via the passing_test() function" , check_passing_test_function_ptr) &
147151 ]
148152#endif
149153 test_results = test_diagnosis_test% run(test_descriptions)
0 commit comments