1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-05-28 16:09:29 +00:00

tests: Remove unused mock-libfeedback.h

This commit is contained in:
Evangelos Ribeiro Tzaras 2023-01-15 10:52:57 +01:00
parent 35953ff4d1
commit 82c3cea464
3 changed files with 1 additions and 30 deletions

View file

@ -82,7 +82,7 @@ t = executable('ui-call', test_sources,
test('ui-call', t, env: test_env)
test_sources = [
'mock-call.c', 'mock-call.h', 'mock-libfeedback.h',
'mock-call.c', 'mock-call.h',
'test-ringer.c'
]

View file

@ -1,28 +0,0 @@
#pragma once
#define LIBFEEDBACK_USE_UNSTABLE_API
#include <libfeedback.h>
#include <glib.h>
gboolean __wrap_lfb_init (const char *app_id,
GError **error);
void __wrap_lfb_uninit (void);
void __wrap_lfb_event_set_feedback_profile (LfbEvent *self,
const char *profile);
void __wrap_lfb_event_trigger_feedback_async (LfbEvent *self,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean __wrap_lfb_event_trigger_feedback_finish (LfbEvent *self,
GAsyncResult *res,
GError **error);
void __wrap_lfb_event_end_feedback_async (LfbEvent *self,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean __wrap_lfb_event_end_feedback_finish (LfbEvent *self,
GAsyncResult *res,
GError **error);

View file

@ -11,7 +11,6 @@
#include "calls-ringer.h"
#include "calls-ui-call-data.h"
#include "mock-call.h"
#include "mock-libfeedback.h"
#include "mock-contacts-provider.h"