diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2012-09-16 10:57:48 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2012-09-16 10:57:48 +0000 |
commit | 785f2a6b3a70454ecfe94addc6480ebf20c44c13 (patch) | |
tree | 17a195d2c1f022cd480fd0e0b95be5035ad915e2 /src/tests/eina/eina_suite.h | |
parent | dfc0331373c3f98df7cb996abc588c7dcf44af0a (diff) | |
download | efl-785f2a6b3a70454ecfe94addc6480ebf20c44c13.tar.gz |
merge : add eina
currently, examples, tests and benchmark are not set. That's the next things i'll do
SVN revision: 76710
Diffstat (limited to 'src/tests/eina/eina_suite.h')
-rw-r--r-- | src/tests/eina/eina_suite.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/tests/eina/eina_suite.h b/src/tests/eina/eina_suite.h new file mode 100644 index 0000000000..d399298128 --- /dev/null +++ b/src/tests/eina/eina_suite.h @@ -0,0 +1,61 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef EINA_SUITE_H_ +#define EINA_SUITE_H_ + +#include <check.h> + +void eina_test_stringshare(TCase *tc); +void eina_test_ustringshare(TCase *tc); +void eina_test_binshare(TCase *tc); +void eina_test_inarray(TCase *tc); +void eina_test_array(TCase *tc); +void eina_test_log(TCase *tc); +void eina_test_error(TCase *tc); +void eina_test_magic(TCase *tc); +void eina_test_inlist(TCase *tc); +void eina_test_clist(TCase *tc); +void eina_test_lalloc(TCase *tc); +void eina_test_main(TCase *tc); +void eina_test_counter(TCase *tc); +void eina_test_hash(TCase *tc); +void eina_test_list(TCase *tc); +void eina_test_iterator(TCase *tc); +void eina_test_accessor(TCase *tc); +void eina_test_module(TCase *tc); +void eina_test_convert(TCase *tc); +void eina_test_rbtree(TCase *tc); +void eina_test_file(TCase *tc); +void eina_test_benchmark(TCase *tc); +void eina_test_mempool(TCase *tc); +void eina_test_rectangle(TCase *tc); +void eina_test_matrixsparse(TCase *tc); +void eina_test_tiler(TCase *tc); +void eina_test_strbuf(TCase *tc); +void eina_test_binbuf(TCase *tc); +void eina_test_str(TCase *tc); +void eina_test_ustr(TCase *tc); +void eina_test_quadtree(TCase *tc); +void eina_test_fp(TCase *tc); +void eina_test_sched(TCase *tc); +void eina_test_simple_xml_parser(TCase *tc); +void eina_test_value(TCase *tc); +void eina_test_model(TCase *tc); + +#endif /* EINA_SUITE_H_ */ |