74 lines
2.0 KiB
C
Executable File
74 lines
2.0 KiB
C
Executable File
/*
|
|
+----------------------------------------------------------------------+
|
|
| Swoole |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 2.0 of the Apache license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| http://www.apache.org/licenses/LICENSE-2.0.html |
|
|
| If you did not receive a copy of the Apache2.0 license and are unable|
|
|
| to obtain it through the world-wide-web, please send a note to |
|
|
| license@swoole.com so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
| Author: Tianfeng Han <mikan.tenny@gmail.com> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef SW_TESTS_H_
|
|
#define SW_TESTS_H_
|
|
|
|
#define swUnitTest(x) int swUnitTest_##x(swUnitTest *object)
|
|
#define swUnitTest_steup(x,n,t) _swUnitTest_setup(swUnitTest_##x, #x, n, t)
|
|
|
|
typedef struct _swUnitTest
|
|
{
|
|
int argc;
|
|
char **argv;
|
|
} swUnitTest;
|
|
typedef int (*swUnitTest_Func)(swUnitTest *object);
|
|
|
|
void _swUnitTest_setup(swUnitTest_Func func, char *func_name, int run_times, char *comment);
|
|
int swUnitTest_run(swUnitTest *object);
|
|
|
|
swUnitTest(mem_test1);
|
|
swUnitTest(mem_test2);
|
|
swUnitTest(mem_test3);
|
|
swUnitTest(mem_test4);
|
|
|
|
swUnitTest(dnslookup_test);
|
|
swUnitTest(client_test);
|
|
swUnitTest(server_test);
|
|
|
|
swUnitTest(hashmap_test1);
|
|
swUnitTest(ds_test2);
|
|
swUnitTest(ds_test1);
|
|
|
|
swUnitTest(chan_test);
|
|
|
|
swUnitTest(u1_test2);
|
|
swUnitTest(u1_test1);
|
|
swUnitTest(u1_test3);
|
|
|
|
swUnitTest(http_test2);
|
|
|
|
swUnitTest(type_test1);
|
|
|
|
swUnitTest(aio_test);
|
|
swUnitTest(aio_test2);
|
|
|
|
swUnitTest(ws_test1);
|
|
|
|
swUnitTest(http_test1);
|
|
swUnitTest(http_test2);
|
|
|
|
swUnitTest(heap_test1);
|
|
swUnitTest(linkedlist_test);
|
|
swUnitTest(rbtree_test);
|
|
void p_str(void *str);
|
|
|
|
swUnitTest(pool_thread);
|
|
|
|
swUnitTest(ringbuffer_test1);
|
|
|
|
#endif /* SW_TESTS_H_ */
|