Starter project for SDL2.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
506 B

  1. #ifndef IZ_MOCK_H
  2. #define IZ_MOCK_H
  3. #define mock_call_count_t unsigned char
  4. #define mock(X) static mock_call_count_t actual_##X = 0;
  5. #define mock_return(X) actual_##X += 1; return
  6. #define mock_reset(X) actual_##X = 0
  7. #define mock_get_actual_calls(X) (mock_call_count_t) actual_##X
  8. #define mock_set_expected_calls(X, Y) static const mock_call_count_t expected_##X = Y
  9. #define mock_get_expected_calls(X) (mock_call_count_t) expected_##X
  10. #define mock_is_called(X) mock_get_actual_calls(X) > 0
  11. #endif