From bef5fb5d5d7fecfed21a13004deb83bd90c2cdfe Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Fri, 19 Jul 2013 16:34:22 +0200 Subject: removed everything unrelated to the GtkVlcPlayer widget --- lib/experiment-reader/tests/Makefile.am | 21 - .../tests/test-experiment-valid.xml | 914 --------------------- lib/experiment-reader/tests/unit-tests.c | 104 --- 3 files changed, 1039 deletions(-) delete mode 100644 lib/experiment-reader/tests/Makefile.am delete mode 100644 lib/experiment-reader/tests/test-experiment-valid.xml delete mode 100644 lib/experiment-reader/tests/unit-tests.c (limited to 'lib/experiment-reader/tests') diff --git a/lib/experiment-reader/tests/Makefile.am b/lib/experiment-reader/tests/Makefile.am deleted file mode 100644 index 388496f..0000000 --- a/lib/experiment-reader/tests/Makefile.am +++ /dev/null @@ -1,21 +0,0 @@ -AM_CFLAGS = -Wall -AM_CPPFLAGS = -I.. -LDADD = ../libexperiment-reader.la - -AM_CFLAGS += @LIBGLIB_CFLAGS@ -LDADD += @LIBGLIB_LIBS@ - -check_PROGRAMS = unit-tests -dist_noinst_DATA = test-experiment-valid.xml - -if USE_GTESTER -check-local : gtester-log.html -endif - -gtester-log.html : gtester-log.xml - @GTESTER_REPORT@ $< >$@ - -gtester-log.xml : $(check_PROGRAMS) - @GTESTER@ -m=quick -o=$@ $^ - -CLEANFILES = gtester-log.xml gtester-log.html diff --git a/lib/experiment-reader/tests/test-experiment-valid.xml b/lib/experiment-reader/tests/test-experiment-valid.xml deleted file mode 100644 index a7b8bec..0000000 --- a/lib/experiment-reader/tests/test-experiment-valid.xml +++ /dev/null @@ -1,914 +0,0 @@ - - - - - - - - - Wizard - - - Proband - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - guten tag und herzlich willkommen - - - - - - - - - - - - - bitte nennen und buchstabieren sie zunächst ihren vor und zunamen - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - mit abschluss dieser aufgabe - - - - - - tschüss - - - - diff --git a/lib/experiment-reader/tests/unit-tests.c b/lib/experiment-reader/tests/unit-tests.c deleted file mode 100644 index 78c45a4..0000000 --- a/lib/experiment-reader/tests/unit-tests.c +++ /dev/null @@ -1,104 +0,0 @@ -/** - * @file - * libexperiment-reader unit tests using GTester - */ - -/* - * Copyright (C) 2012-2013 Otto-von-Guericke-Universität Magdeburg - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include - -#include -#include - -#include - -#define TEST_EXPERIMENT_VALID "test-experiment-valid.xml" -/* #define TEST_EXPERIMENT_INVALID "test-experiment-invalid.xml" */ - -static void -test_new_valid(void) -{ - ExperimentReader *reader; - - reader = experiment_reader_new(TEST_EXPERIMENT_VALID); - g_assert(reader != NULL); - - g_object_unref(reader); -} - -static void -test_foreach_greeting_topic_values_cb(ExperimentReader *reader, - const gchar *topic_id, - gint64 start_time, - gint64 end_time, - gpointer data) -{ - gint *i = (gint *)data; - - g_assert(reader != NULL); - g_assert(data != NULL); - - switch (*i) { - case 0: - g_assert_cmpstr(topic_id, ==, "bz_2"); - g_assert_cmpint(start_time, ==, 13648); - g_assert_cmpint(end_time, ==, 36908); - break; - default: - g_assert_not_reached(); - } - - ++*i; -} - -static void -test_foreach_greeting_topic_values(void) -{ - ExperimentReader *reader; - gint cb_iter = 0; - - reader = experiment_reader_new(TEST_EXPERIMENT_VALID); - g_assert(reader != NULL); - - experiment_reader_foreach_greeting_topic(reader, - test_foreach_greeting_topic_values_cb, - &cb_iter); - - g_object_unref(reader); -} - -/** @private */ -int -main(int argc, char **argv) -{ - g_type_init(); - g_test_init(&argc, &argv, NULL); - - g_test_add_func("/api/new/test_valid", test_new_valid); - - g_test_add_func("/api/foreach_greeting_topic/test_values", - test_foreach_greeting_topic_values); - - g_test_run_suite(g_test_get_root()); - - return 0; -} -- cgit v1.2.3