summaryrefslogtreecommitdiff
path: root/lily-test.h
diff options
context:
space:
mode:
Diffstat (limited to 'lily-test.h')
-rw-r--r--lily-test.h9
1 files changed, 7 insertions, 2 deletions
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