diff options
Diffstat (limited to 'c_implementation/tests/test_aklog.c')
-rw-r--r-- | c_implementation/tests/test_aklog.c | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/c_implementation/tests/test_aklog.c b/c_implementation/tests/test_aklog.c new file mode 100644 index 0000000..7e3f6a3 --- /dev/null +++ b/c_implementation/tests/test_aklog.c @@ -0,0 +1,72 @@ +#include <libaklog.h> + +void test_message_output() +{ + ak_log_print_log_line("1731664790 <TEST> [INFO] test message info"); +} + +void test_follow() +{ + ak_log_follow(); +} + +void test_grep() +{ + ak_log_grep("-h"); +} + +void test_rotate() +{ + ak_log_rotate(); +} + +void test_log_message() +{ + ak_log_message(__func__, DEBUG, "test message info"); +} + +void test_exit() +{ + ak_log_exit(__func__, "test message info"); +} + +void test_warning() +{ + ak_log_warning(__func__, "test message info"); +} + +void test_debug() +{ + ak_log_debug(__func__, "test message info"); +} + +void test_error() +{ + ak_log_error(__func__, "test message info"); +} + +void test_info() +{ + ak_log_info(__func__, "test message info"); +} + +void test_one_word() +{ + ak_log_info(__func__, "test"); +} + +int main (void) +{ + test_follow(); + test_message_output(); + test_info(); + test_exit(); + test_error(); + test_debug(); + test_warning(); + test_log_message(); + test_rotate(); + test_grep(); + test_one_word(); + return 0; +} |