Commit | Line | Data |
---|---|---|
a7868768 BA |
1 | #include <stdlib.h> |
2 | ||
3 | int main(int argc, char** argv) | |
4 | { | |
a7868768 | 5 | //file ./t.Tree.c : |
6860e373 BA |
6 | t_tree_clear(); |
7 | t_tree_size(); | |
8 | t_tree_add_remove(); | |
9 | t_tree_iterate(); | |
10 | t_tree_copy(); | |
a7868768 | 11 | |
1ff641f9 BA |
12 | //file ./t.PriorityQueue.c : |
13 | t_priorityqueue_clear(); | |
14 | t_priorityqueue_size(); | |
15 | t_priorityqueue_push_pop_basic(); | |
16 | t_priorityqueue_push_pop_evolved(); | |
17 | t_priorityqueue_copy(); | |
a7868768 | 18 | |
aef8a996 BA |
19 | //file ./t.Heap.c : |
20 | t_heap_clear(); | |
21 | t_heap_size(); | |
22 | t_heap_push_pop_basic(); | |
23 | t_heap_push_pop_evolved(); | |
24 | t_heap_copy(); | |
25 | ||
588a2232 BA |
26 | //file ./t.Set.c : |
27 | t_set_clear(); | |
28 | t_set_size(); | |
29 | t_set_add_remove_basic(); | |
30 | t_set_getnull_modify(); | |
31 | t_set_copy(); | |
32 | t_set_tovect(); | |
33 | ||
1ff641f9 BA |
34 | //file ./t.List.c : |
35 | t_list_clear(); | |
36 | t_list_size(); | |
37 | t_list_push_pop_basic(); | |
38 | t_list_push_pop_evolved(); | |
39 | t_list_copy(); | |
40 | ||
aef8a996 BA |
41 | //file ./t.BufferTop.c : |
42 | t_buffertop_clear(); | |
43 | t_buffertop_size(); | |
44 | t_buffertop_push_pop_basic(); | |
45 | t_buffertop_push_pop_evolved(); | |
46 | t_buffertop_copy(); | |
8306616e | 47 | |
1ff641f9 | 48 | //file ./t.HashTable.c : |
e45132ac BA |
49 | t_hashtable_clear(); |
50 | t_hashtable_size(); | |
1ff641f9 | 51 | t_hashtable_set_remove_basic(); |
e45132ac BA |
52 | t_hashtable_getnull_modify(); |
53 | t_hashtable_copy(); | |
1ff641f9 BA |
54 | |
55 | //file ./t.Stack.c : | |
56 | t_stack_clear(); | |
57 | t_stack_size(); | |
58 | t_stack_push_pop_basic(); | |
59 | t_stack_push_pop_evolved(); | |
60 | t_stack_copy(); | |
61 | ||
62 | //file ./t.Queue.c : | |
63 | t_queue_clear(); | |
64 | t_queue_size(); | |
65 | t_queue_push_pop_basic(); | |
66 | t_queue_push_pop_evolved(); | |
67 | t_queue_copy(); | |
68 | ||
69 | //file ./t.Vector.c : | |
70 | t_vector_clear(); | |
71 | t_vector_size(); | |
72 | t_vector_push_pop_basic(); | |
73 | t_vector_push_pop_evolved(); | |
74 | t_vector_copy(); | |
a7868768 BA |
75 | |
76 | return 0; | |
77 | } |