aboutsummaryrefslogtreecommitdiff
path: root/c_implementation/tests/test_aklogwrite.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_implementation/tests/test_aklogwrite.c')
-rw-r--r--c_implementation/tests/test_aklogwrite.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/c_implementation/tests/test_aklogwrite.c b/c_implementation/tests/test_aklogwrite.c
new file mode 100644
index 0000000..0fc5d5b
--- /dev/null
+++ b/c_implementation/tests/test_aklogwrite.c
@@ -0,0 +1,16 @@
+#include <libaklog.h>
+
+void test_write()
+{
+ ak_log_info(__func__, "test message info");
+ ak_log_warning(__func__, "test message warning");
+ ak_log_error(__func__, "test message error");
+ ak_log_debug(__func__, "test message debug");
+}
+
+int main (void)
+{
+ test_write();
+ return 0;
+}
+