HomeSort by relevance Sort by last modified time
    Searched refs:find_operator_function_by_string (Results 1 - 2 of 2) sorted by null

  /external/cmockery/cmockery_0_1_2/src/example/
calculator_test.c 45 extern BinaryOperator find_operator_function_by_string(
123 /* Ensure find_operator_function_by_string() asserts when a NULL pointer is
126 expect_assert_failure(find_operator_function_by_string(1, NULL, "test"));
129 /* Ensure find_operator_function_by_string() asserts when a NULL pointer is
135 expect_assert_failure(find_operator_function_by_string(
139 /* Ensure find_operator_function_by_string() returns NULL when a NULL pointer
142 assert_int_equal((int)find_operator_function_by_string(0, NULL, "test"),
146 /* Ensure find_operator_function_by_string() returns NULL when searching for
154 assert_int_equal((int)find_operator_function_by_string(
159 /* Ensure find_operator_function_by_string() returns the correct function whe
    [all...]
calculator.c 123 static BinaryOperator find_operator_function_by_string( function
194 const BinaryOperator function = find_operator_function_by_string(

Completed in 80 milliseconds