summaryrefslogtreecommitdiffstats
path: root/test/test-mock.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-mock.c')
-rw-r--r--test/test-mock.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test-mock.c b/test/test-mock.c
index 7594a3a..625a3fe 100644
--- a/test/test-mock.c
+++ b/test/test-mock.c
@@ -1,6 +1,7 @@
#include <glib.h>
#include "uca-camera.h"
+#include "uca-plugin-manager.h"
#include "cameras/uca-mock-camera.h"
typedef struct {
@@ -160,6 +161,14 @@ static void test_signal(Fixture *fixture, gconstpointer data)
int main(int argc, char *argv[])
{
g_type_init();
+
+ UcaPluginManager *manager = uca_plugin_manager_new ();
+ GList *list = uca_plugin_manager_get_available_cameras (manager);
+
+ g_list_free (list);
+
+ g_object_unref (manager);
+
g_test_init(&argc, &argv, NULL);
g_test_bug_base("http://ufo.kit.edu/ufo/ticket");