olaf@9: /* olaf@9: * File: list_tests.h olaf@9: * Author: olaf olaf@9: * olaf@9: * Created on 31. Dezember 2011, 18:07 olaf@9: */ olaf@9: olaf@9: #ifndef LIST_TESTS_H olaf@9: #define LIST_TESTS_H olaf@9: universe@27: #include "main.h" universe@27: universe@27: #include "ucx/list.h" universe@27: #include "ucx/test.h" universe@27: olaf@9: #ifdef __cplusplus olaf@9: extern "C" { olaf@9: #endif olaf@9: universe@27: /* universe@27: * Assumed to be correct: universe@27: * ucx_list_free universe@27: */ olaf@9: universe@59: UCX_TEST_DECLARE(test_ucx_list_append); universe@59: UCX_TEST_DECLARE(test_ucx_list_prepend); universe@59: UCX_TEST_DECLARE(test_ucx_list_equals); universe@59: UCX_TEST_DECLARE(test_ucx_list_concat); universe@59: UCX_TEST_DECLARE(test_ucx_list_size); universe@59: UCX_TEST_DECLARE(test_ucx_list_last); universe@59: UCX_TEST_DECLARE(test_ucx_list_get); universe@59: UCX_TEST_DECLARE(test_ucx_list_remove); universe@59: UCX_TEST_DECLARE(test_ucx_list_clone); universe@59: UCX_TEST_DECLARE(test_ucx_list_sort); olaf@9: olaf@9: #ifdef __cplusplus olaf@9: } olaf@9: #endif olaf@9: olaf@9: #endif /* LIST_TESTS_H */ olaf@9: