Home
last modified time | relevance | path

Searched refs:find_operator_function_by_string (Results 1 – 2 of 2) sorted by relevance

/external/cmockery/cmockery_0_1_2/src/example/
Dcalculator_test.c45 extern BinaryOperator find_operator_function_by_string(
126 expect_assert_failure(find_operator_function_by_string(1, NULL, "test")); in test_find_operator_function_by_string_null_functions()
135 expect_assert_failure(find_operator_function_by_string( in test_find_operator_function_by_string_null_string()
142 assert_int_equal((int)find_operator_function_by_string(0, NULL, "test"), in test_find_operator_function_by_string_valid_null_functions()
154 assert_int_equal((int)find_operator_function_by_string( in test_find_operator_function_by_string_not_found()
167 assert_int_equal((int)find_operator_function_by_string( in test_find_operator_function_by_string_found()
Dcalculator.c123 static BinaryOperator find_operator_function_by_string( in find_operator_function_by_string() function
194 const BinaryOperator function = find_operator_function_by_string( in perform_operation()