X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=test%2Fmain.c;h=fe3b1cf7d0eca2f9f9b4fa3dfe6a0f1f1fbd7c72;hb=HEAD;hp=7c08f3fa95b9e67baf4fc332f5c28c22fcab7640;hpb=a78687686f5b490d99fae21f9fa8aaa9a34f1812;p=cgds.git diff --git a/test/main.c b/test/main.c index 7c08f3f..fe3b1cf 100644 --- a/test/main.c +++ b/test/main.c @@ -2,20 +2,6 @@ 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.Heap.c : - t_heap_clear(); - t_heap_size(); - t_heap_push_pop_basic(); - t_heap_push_pop_evolved(); - t_heap_copy(); - //file ./t.Tree.c : t_tree_clear(); t_tree_size(); @@ -30,6 +16,21 @@ int main(int argc, char** argv) 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.Set.c : + t_set_clear(); + t_set_size(); + t_set_add_remove_basic(); + t_set_getnull_modify(); + t_set_copy(); + t_set_tovect(); + //file ./t.List.c : t_list_clear(); t_list_size(); @@ -37,12 +38,26 @@ 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.BufferTop.c : + t_buffertop_clear(); + t_buffertop_size(); + t_buffertop_push_pop_basic(); + t_buffertop_push_pop_evolved(); + t_buffertop_copy(); + + //file ./t.HashTable.c : + t_hashtable_clear(); + t_hashtable_size(); + t_hashtable_set_remove_basic(); + t_hashtable_getnull_modify(); + t_hashtable_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.Queue.c : t_queue_clear(); @@ -51,12 +66,12 @@ 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.Vector.c : + t_vector_clear(); + t_vector_size(); + t_vector_push_pop_basic(); + t_vector_push_pop_evolved(); + t_vector_copy(); return 0; }