Simplify installation procedure
[cgds.git] / test / main.c
CommitLineData
a7868768
BA
1#include <stdlib.h>
2
3int main(int argc, char** argv)
4{
aef8a996
BA
5 //file ./t.Stack.c :
6 t_stack_clear();
7 t_stack_size();
8 t_stack_push_pop_basic();
9 t_stack_push_pop_evolved();
10 t_stack_copy();
a7868768 11
aef8a996
BA
12 //file ./t.List.c :
13 t_list_clear();
14 t_list_size();
15 t_list_push_pop_basic();
16 t_list_push_pop_evolved();
17 t_list_copy();
a7868768
BA
18
19 //file ./t.Tree.c :
6860e373
BA
20 t_tree_clear();
21 t_tree_size();
22 t_tree_add_remove();
23 t_tree_iterate();
24 t_tree_copy();
a7868768 25
aef8a996
BA
26 //file ./t.Vector.c :
27 t_vector_clear();
28 t_vector_size();
29 t_vector_push_pop_basic();
30 t_vector_push_pop_evolved();
31 t_vector_copy();
a7868768
BA
32
33 //file ./t.Queue.c :
6860e373
BA
34 t_queue_clear();
35 t_queue_size();
36 t_queue_push_pop_basic();
37 t_queue_push_pop_evolved();
38 t_queue_copy();
a7868768 39
aef8a996
BA
40 //file ./t.Heap.c :
41 t_heap_clear();
42 t_heap_size();
43 t_heap_push_pop_basic();
44 t_heap_push_pop_evolved();
45 t_heap_copy();
46
47 //file ./t.BufferTop.c :
48 t_buffertop_clear();
49 t_buffertop_size();
50 t_buffertop_push_pop_basic();
51 t_buffertop_push_pop_evolved();
52 t_buffertop_copy();
8306616e
BA
53
54 //file ./t.PriorityQueue.c :
6860e373
BA
55 t_priorityqueue_clear();
56 t_priorityqueue_size();
57 t_priorityqueue_push_pop_basic();
58 t_priorityqueue_push_pop_evolved();
59 t_priorityqueue_copy();
a7868768
BA
60
61 return 0;
62}