Starter project for SDL2.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

21 行
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