X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=test%2Fmain.c;h=7b8f5ff287732e78c0ce79c57f229cd942503f12;hb=6860e3738006ac605540c4f7bd9b7a8bb75383ac;hp=7c08f3fa95b9e67baf4fc332f5c28c22fcab7640;hpb=a78687686f5b490d99fae21f9fa8aaa9a34f1812;p=cgds.git diff --git a/test/main.c b/test/main.c index 7c08f3f..7b8f5ff 100644 --- a/test/main.c +++ b/test/main.c @@ -2,19 +2,19 @@ int main(int argc, char** argv) { - //file ./t.Stack.c : - t_stack_clear(); - t_stack_size(); - t_stack_push_pop_basic(); - t_stack_push_pop_evolved(); - t_stack_copy(); + //file ./t.Vector.c : + t_vector_clear(); + t_vector_size(); + t_vector_push_pop_basic(); + t_vector_push_pop_evolved(); + t_vector_copy(); - //file ./t.Heap.c : - t_heap_clear(); - t_heap_size(); - t_heap_push_pop_basic(); - t_heap_push_pop_evolved(); - t_heap_copy(); + //file ./t.BufferTop.c : + t_buffertop_clear(); + t_buffertop_size(); + t_buffertop_push_pop_basic(); + t_buffertop_push_pop_evolved(); + t_buffertop_copy(); //file ./t.Tree.c : t_tree_clear(); @@ -23,12 +23,12 @@ int main(int argc, char** argv) t_tree_iterate(); t_tree_copy(); - //file ./t.PriorityQueue.c : - t_priorityqueue_clear(); - t_priorityqueue_size(); - t_priorityqueue_push_pop_basic(); - t_priorityqueue_push_pop_evolved(); - t_priorityqueue_copy(); + //file ./t.Heap.c : + t_heap_clear(); + t_heap_size(); + t_heap_push_pop_basic(); + t_heap_push_pop_evolved(); + t_heap_copy(); //file ./t.List.c : t_list_clear(); @@ -37,13 +37,6 @@ int main(int argc, char** argv) t_list_push_pop_evolved(); t_list_copy(); - //file ./t.Vector.c : - t_vector_clear(); - t_vector_size(); - t_vector_push_pop_basic(); - t_vector_push_pop_evolved(); - t_vector_copy(); - //file ./t.Queue.c : t_queue_clear(); t_queue_size(); @@ -51,12 +44,19 @@ int main(int argc, char** argv) t_queue_push_pop_evolved(); t_queue_copy(); - //file ./t.BufferTop.c : - t_buffertop_clear(); - t_buffertop_size(); - t_buffertop_push_pop_basic(); - t_buffertop_push_pop_evolved(); - t_buffertop_copy(); + //file ./t.Stack.c : + t_stack_clear(); + t_stack_size(); + t_stack_push_pop_basic(); + t_stack_push_pop_evolved(); + t_stack_copy(); + + //file ./t.PriorityQueue.c : + t_priorityqueue_clear(); + t_priorityqueue_size(); + t_priorityqueue_push_pop_basic(); + t_priorityqueue_push_pop_evolved(); + t_priorityqueue_copy(); return 0; }