test/dlist_tests.h

changeset 27
22644e2572bc
parent 19
cdd7a3173249
child 35
fdabd1240b69
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/test/dlist_tests.h	Sat Feb 18 18:36:30 2012 +0100
     1.3 @@ -0,0 +1,41 @@
     1.4 +/* 
     1.5 + * File:   dlist_tests.h
     1.6 + * Author: Mike
     1.7 + *
     1.8 + * Created on 18. Februar 2012, 18:26
     1.9 + */
    1.10 +
    1.11 +#ifndef DLIST_TESTS_H
    1.12 +#define	DLIST_TESTS_H
    1.13 +
    1.14 +#include "main.h"
    1.15 +
    1.16 +#include "ucx/dlist.h"
    1.17 +#include "ucx/test.h"
    1.18 +
    1.19 +#ifdef	__cplusplus
    1.20 +extern "C" {
    1.21 +#endif
    1.22 +
    1.23 +/*
    1.24 + * Assumed to be correct:
    1.25 + *   ucx_dlist_free
    1.26 + */
    1.27 +
    1.28 +UCX_TEST_DECLARE(test_ucx_dlist_append)
    1.29 +UCX_TEST_DECLARE(test_ucx_dlist_prepend)
    1.30 +UCX_TEST_DECLARE(test_ucx_dlist_equals)
    1.31 +UCX_TEST_DECLARE(test_ucx_dlist_concat)
    1.32 +UCX_TEST_DECLARE(test_ucx_dlist_size)
    1.33 +UCX_TEST_DECLARE(test_ucx_dlist_first)
    1.34 +UCX_TEST_DECLARE(test_ucx_dlist_last)
    1.35 +UCX_TEST_DECLARE(test_ucx_dlist_get)
    1.36 +UCX_TEST_DECLARE(test_ucx_dlist_remove)
    1.37 +UCX_TEST_DECLARE(test_ucx_dlist_clone)
    1.38 +
    1.39 +#ifdef	__cplusplus
    1.40 +}
    1.41 +#endif
    1.42 +
    1.43 +#endif	/* DLIST_TESTS_H */
    1.44 +

mercurial