From e61a3232f1384876044ab8c0328f42e60d450574 Mon Sep 17 00:00:00 2001 From: sanine Date: Mon, 4 Apr 2022 17:00:34 -0500 Subject: add enqueue/dequeue lily_mock_t macros --- lily-test.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lily-test.h') diff --git a/lily-test.h b/lily-test.h index bf0bbae..7a46cd9 100644 --- a/lily-test.h +++ b/lily-test.h @@ -154,15 +154,20 @@ typedef struct lily_mock_t { lily_mock_t * lily_mock_create(); void lily_mock_destroy(lily_mock_t *m); -#define lily_mock_call(m, args) \ +#define lily_mock_call(m, args) \ _lily_mock_call(m, args, LILY_NARGS(args)) void _lily_mock_call(lily_mock_t *m, struct lily_mock_arg_t *args, size_t n_args); -#define lily_get_call(m, args, call_num) \ +#define lily_get_call(m, args, call_num) \ _lily_get_call(m, args, LILY_NARGS(args), call_num) void _lily_get_call(lily_mock_t *m, struct lily_mock_arg_t *args, size_t n_args, unsigned int call_num); +#define lily_store_value(m, type, value) \ + lily_enqueue(m->values, type, value) +#define lily_get_value(m, type, ptr) \ + lily_dequeue(m->values, type, ptr) + #endif -- cgit v1.2.1