Unit Test Framework. More...
#include "asterisk.h"
#include "asterisk/_private.h"
Go to the source code of this file.
Functions | |
int | ast_test_init () |
ASTERISK_FILE_VERSION (__FILE__,"$Revision: 416732 $") |
Unit Test Framework.
Definition in file test.c.
int ast_test_init | ( | void | ) |
Provided by test.c
Definition at line 941 of file test.c.
References ARRAY_LEN, ast_cli_register_multiple(), and ast_register_atexit().
Referenced by main().
00942 { 00943 #ifdef TEST_FRAMEWORK 00944 /* Register cli commands */ 00945 ast_cli_register_multiple(test_cli, ARRAY_LEN(test_cli)); 00946 ast_register_atexit(test_shutdown); 00947 #endif 00948 00949 return 0; 00950 }
ASTERISK_FILE_VERSION | ( | __FILE__ | , | |
"$Revision: 416732 $" | ||||
) |