Code Coverage Report


Directory: targets/
File: om-tree-test-executable/source/main.c
Date: 2024-10-29 22:25:26
Exec Total Coverage
Lines: 0 0 100.0%
Functions: 0 0 -%
Branches: 0 0 -%

Line Branch Exec Source
1 // LCOV_EXCL_START
2
3 #include <om/byte_stack_test.h>
4 #include <om/stack_test.h>
5 #include <om/tree_test.h>
6 #include <om/tree/node_pointer_stack_test.h>
7 #include <om/tree/node_stack_test.h>
8
9 #include <stdlib.h>
10
11 int main(void) {
12 Om_ByteStackTest();
13 Om_StackTest();
14 Om_TreeTest();
15 Om_Tree_NodePointerStackTest();
16 Om_Tree_NodeStackTest();
17 return EXIT_SUCCESS;
18 }
19
20 // LCOV_EXCL_STOP
21