Implement HashTable + fix some extra blank spaces, remove Bool type (using bool ...
[cgds.git] / test / main.c
index 3c2cf04..c5683f8 100644 (file)
@@ -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.List.c :
-       t_list_clear();
-       t_list_size();
-       t_list_push_pop_basic();
-       t_list_push_pop_evolved();
-       t_list_copy();
-
        //file ./t.Tree.c :
        t_tree_clear();
        t_tree_size();
@@ -23,19 +9,12 @@ int main(int argc, char** argv)
        t_tree_iterate();
        t_tree_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();
-       t_queue_push_pop_basic();
-       t_queue_push_pop_evolved();
-       t_queue_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();
@@ -44,6 +23,13 @@ int main(int argc, char** argv)
        t_heap_push_pop_evolved();
        t_heap_copy();
 
+       //file ./t.List.c :
+       t_list_clear();
+       t_list_size();
+       t_list_push_pop_basic();
+       t_list_push_pop_evolved();
+       t_list_copy();
+
        //file ./t.BufferTop.c :
        t_buffertop_clear();
        t_buffertop_size();
@@ -51,12 +37,33 @@ int main(int argc, char** argv)
        t_buffertop_push_pop_evolved();
        t_buffertop_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.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();
+       t_queue_size();
+       t_queue_push_pop_basic();
+       t_queue_push_pop_evolved();
+       t_queue_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;
 }