test/list_tests.h

Wed, 27 Feb 2013 10:28:02 +0100

author
Mike Becker <universe@uap-core.de>
date
Wed, 27 Feb 2013 10:28:02 +0100
changeset 90
ef3163857e88
parent 59
c80c910fe191
child 103
08018864fb91
permissions
-rw-r--r--

added tests for ucx_(d)list_contains

olaf@9 1 /*
olaf@9 2 * File: list_tests.h
olaf@9 3 * Author: olaf
olaf@9 4 *
olaf@9 5 * Created on 31. Dezember 2011, 18:07
olaf@9 6 */
olaf@9 7
olaf@9 8 #ifndef LIST_TESTS_H
olaf@9 9 #define LIST_TESTS_H
olaf@9 10
universe@27 11 #include "main.h"
universe@27 12
universe@27 13 #include "ucx/list.h"
universe@27 14 #include "ucx/test.h"
universe@27 15
olaf@9 16 #ifdef __cplusplus
olaf@9 17 extern "C" {
olaf@9 18 #endif
olaf@9 19
universe@27 20 /*
universe@27 21 * Assumed to be correct:
universe@27 22 * ucx_list_free
universe@27 23 */
olaf@9 24
universe@59 25 UCX_TEST_DECLARE(test_ucx_list_append);
universe@59 26 UCX_TEST_DECLARE(test_ucx_list_prepend);
universe@59 27 UCX_TEST_DECLARE(test_ucx_list_equals);
universe@59 28 UCX_TEST_DECLARE(test_ucx_list_concat);
universe@59 29 UCX_TEST_DECLARE(test_ucx_list_size);
universe@59 30 UCX_TEST_DECLARE(test_ucx_list_last);
universe@59 31 UCX_TEST_DECLARE(test_ucx_list_get);
universe@90 32 UCX_TEST_DECLARE(test_ucx_list_contains);
universe@59 33 UCX_TEST_DECLARE(test_ucx_list_remove);
universe@59 34 UCX_TEST_DECLARE(test_ucx_list_clone);
universe@59 35 UCX_TEST_DECLARE(test_ucx_list_sort);
olaf@9 36
olaf@9 37 #ifdef __cplusplus
olaf@9 38 }
olaf@9 39 #endif
olaf@9 40
olaf@9 41 #endif /* LIST_TESTS_H */
olaf@9 42

mercurial