test/map_tests.h

Wed, 10 Oct 2012 09:34:13 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 10 Oct 2012 09:34:13 +0200
changeset 59
c80c910fe191
parent 53
e533c170bfb8
child 103
08018864fb91
permissions
-rw-r--r--

added semicolons to UCX_TEST_DECLARE calls

olaf@20 1 /*
olaf@20 2 *
olaf@20 3 */
olaf@20 4
olaf@20 5 #ifndef MAP_TESTS_H
olaf@20 6 #define MAP_TESTS_H
olaf@20 7
universe@29 8 #include "ucx/test.h"
olaf@20 9 #include "ucx/map.h"
olaf@20 10
olaf@20 11 #ifdef __cplusplus
olaf@20 12 extern "C" {
olaf@20 13 #endif
olaf@20 14
universe@59 15 UCX_TEST_DECLARE(test_ucx_map_new);
universe@59 16 UCX_TEST_DECLARE(test_ucx_key);
universe@59 17 UCX_TEST_DECLARE(test_ucx_map_put);
universe@59 18 UCX_TEST_DECLARE(test_ucx_map_get);
universe@59 19 UCX_TEST_DECLARE(test_ucx_map_remove);
universe@59 20 UCX_TEST_DECLARE(test_ucx_map_iterator);
universe@59 21 UCX_TEST_DECLARE(test_ucx_map_iterator_chain);
universe@59 22 UCX_TEST_DECLARE(test_ucx_map_store_load);
universe@59 23 UCX_TEST_DECLARE(test_ucx_map_store_load_with_mempool);
universe@59 24 UCX_TEST_DECLARE(test_ucx_map_clone);
universe@59 25 UCX_TEST_DECLARE(test_ucx_map_rehash);
olaf@20 26
olaf@20 27
olaf@20 28 #ifdef __cplusplus
olaf@20 29 }
olaf@20 30 #endif
olaf@20 31
olaf@20 32 #endif /* MAP_TESTS_H */
olaf@20 33

mercurial