olaf@9: /* universe@27: * File: dlist_tests.h universe@27: * Author: Mike olaf@9: * universe@27: * Created on 18. Februar 2012, 18:26 olaf@9: */ olaf@9: universe@27: #ifndef DLIST_TESTS_H universe@27: #define DLIST_TESTS_H universe@27: universe@27: #include "main.h" universe@27: universe@27: #include "ucx/dlist.h" universe@27: #include "ucx/test.h" olaf@9: olaf@9: #ifdef __cplusplus olaf@9: extern "C" { olaf@9: #endif olaf@9: universe@27: /* universe@27: * Assumed to be correct: universe@27: * ucx_dlist_free universe@27: */ olaf@9: universe@27: UCX_TEST_DECLARE(test_ucx_dlist_append) universe@27: UCX_TEST_DECLARE(test_ucx_dlist_prepend) universe@27: UCX_TEST_DECLARE(test_ucx_dlist_equals) universe@27: UCX_TEST_DECLARE(test_ucx_dlist_concat) universe@27: UCX_TEST_DECLARE(test_ucx_dlist_size) universe@27: UCX_TEST_DECLARE(test_ucx_dlist_first) universe@27: UCX_TEST_DECLARE(test_ucx_dlist_last) universe@27: UCX_TEST_DECLARE(test_ucx_dlist_get) universe@27: UCX_TEST_DECLARE(test_ucx_dlist_remove) universe@27: UCX_TEST_DECLARE(test_ucx_dlist_clone) olaf@9: olaf@9: #ifdef __cplusplus olaf@9: } olaf@9: #endif olaf@9: universe@27: #endif /* DLIST_TESTS_H */ olaf@9: