mirror of
https://github.com/meekrosoft/fff
synced 2026-01-23 00:15:59 +01:00
* Custom return value delegate sequences for variadic functions * Added unit tests for variadic functions custom return value delegate sequences * Fixes in code style * Variadic functions custom delegates also tested in C++ * Fixed some compilation warnings * Added test for variadic function custom delegates sequence reset * Updated documentation with variadic functions custom delegate sequences * Update README.md * Minor style changes. Thank you very much @oliviera9!
85 lines
3.4 KiB
C
85 lines
3.4 KiB
C
|
|
#include "global_fakes.h"
|
|
#include "c_test_framework.h"
|
|
|
|
|
|
|
|
DEFINE_FFF_GLOBALS;
|
|
|
|
void setup()
|
|
{
|
|
RESET_FAKE(voidfunc1);
|
|
RESET_FAKE(voidfunc2);
|
|
RESET_FAKE(voidfunc1outparam);
|
|
RESET_FAKE(longfunc0);
|
|
RESET_FAKE(enumfunc0);
|
|
RESET_FAKE(structfunc0);
|
|
RESET_FAKE(voidfunc3var);
|
|
RESET_FAKE(valuefunc3var);
|
|
RESET_FAKE(strlcpy3);
|
|
|
|
FFF_RESET_HISTORY();
|
|
}
|
|
|
|
|
|
#include "test_cases.include"
|
|
|
|
|
|
int main()
|
|
{
|
|
setbuf(stdout, NULL);
|
|
fprintf(stdout, "-------------\n");
|
|
fprintf(stdout, "Running Tests\n");
|
|
fprintf(stdout, "-------------\n\n");
|
|
fflush(0);
|
|
|
|
/* Run tests */
|
|
RUN_TEST(FFFTestSuite, when_void_func_never_called_then_callcount_is_zero);
|
|
RUN_TEST(FFFTestSuite, when_void_func_called_once_then_callcount_is_one);
|
|
RUN_TEST(FFFTestSuite, when_void_func_called_once_and_reset_then_callcount_is_zero);
|
|
RUN_TEST(FFFTestSuite, when_void_func_with_1_integer_arg_called_then_last_arg_captured);
|
|
RUN_TEST(FFFTestSuite, when_void_func_with_1_integer_arg_called_twice_then_last_arg_captured);
|
|
RUN_TEST(FFFTestSuite, when_void_func_with_1_integer_arg_called_and_reset_then_captured_arg_is_zero);
|
|
RUN_TEST(FFFTestSuite, when_void_func_with_2_char_args_called_then_last_args_captured);
|
|
RUN_TEST(FFFTestSuite, when_void_func_with_2_char_args_called_twice_then_last_args_captured);
|
|
RUN_TEST(FFFTestSuite, when_void_func_with_2_char_args_called_and_reset_then_captured_arg_is_zero);
|
|
RUN_TEST(FFFTestSuite, when_fake_func_called_then_const_arguments_captured);
|
|
|
|
RUN_TEST(FFFTestSuite, when_fake_func_created_default_history_is_fifty_calls);
|
|
RUN_TEST(FFFTestSuite, when_fake_func_called_then_arguments_captured_in_history);
|
|
RUN_TEST(FFFTestSuite, argument_history_is_reset_when_RESET_FAKE_called);
|
|
RUN_TEST(FFFTestSuite, when_fake_func_called_max_times_then_no_argument_histories_dropped);
|
|
RUN_TEST(FFFTestSuite, when_fake_func_called_max_times_plus_one_then_one_argument_history_dropped);
|
|
|
|
RUN_TEST(FFFTestSuite, value_func_will_return_zero_by_default);
|
|
RUN_TEST(FFFTestSuite, value_func_will_return_value_given);
|
|
RUN_TEST(FFFTestSuite, value_func_will_return_zero_after_reset);
|
|
RUN_TEST(FFFTestSuite, register_call_macro_registers_one_call);
|
|
RUN_TEST(FFFTestSuite, register_call_macro_registers_two_calls);
|
|
RUN_TEST(FFFTestSuite, reset_call_history_resets_call_history);
|
|
RUN_TEST(FFFTestSuite, call_history_will_not_write_past_array_bounds);
|
|
RUN_TEST(FFFTestSuite, calling_fake_registers_one_call);
|
|
|
|
RUN_TEST(FFFTestSuite, return_value_sequences_not_exhausted);
|
|
RUN_TEST(FFFTestSuite, return_value_sequences_exhausted);
|
|
|
|
RUN_TEST(FFFTestSuite, can_register_custom_fake);
|
|
RUN_TEST(FFFTestSuite, when_value_custom_fake_called_THEN_it_returns_custom_return_value);
|
|
|
|
RUN_TEST(FFFTestSuite, use_void_vararg_fake_with_different_number_of_arguments);
|
|
RUN_TEST(FFFTestSuite, use_value_vararg_fake_with_different_number_of_arguments);
|
|
RUN_TEST(FFFTestSuite, vararg_custom_fake_sequence_not_exhausted);
|
|
RUN_TEST(FFFTestSuite, vararg_custom_fake_seq_return_values_saved_in_history);
|
|
RUN_TEST(FFFTestSuite, vararg_custom_fake_sequence_exhausted);
|
|
RUN_TEST(FFFTestSuite, vararg_custom_fake_sequence_reset);
|
|
|
|
RUN_TEST(FFFTestSuite, can_capture_upto_20_arguments_correctly);
|
|
RUN_TEST(FFFTestSuite, value_func_can_capture_upto_20_arguments_correctly);
|
|
|
|
printf("\n-------------\n");
|
|
printf("Complete\n");
|
|
printf("-------------\n\n");
|
|
|
|
return 0;
|
|
}
|