X-Git-Url: https://git.auder.net/?p=cgds.git;a=blobdiff_plain;f=test%2Ft.Heap.c;h=e3d6bbc183fc31e6c50cd5f7ab04edb7eb783769;hp=41c0805374b979a2dcdfb189416d97517de77254;hb=4029c99123c240d6e26505940cb5d2be10f9ef2a;hpb=8306616e3ab3b2cbcbaf7dc70931d2ed394a1aa5 diff --git a/test/t.Heap.c b/test/t.Heap.c index 41c0805..e3d6bbc 100644 --- a/test/t.Heap.c +++ b/test/t.Heap.c @@ -3,7 +3,7 @@ #include "test/helpers.h" #include "test/lut.h" -void t_heap_clear() //FTEST +void t_heap_clear() { Heap* h = heap_new(int, MIN_T, 2); @@ -19,7 +19,7 @@ void t_heap_clear() //FTEST heap_destroy(h); } -void t_heap_size() //FTEST +void t_heap_size() { Heap* h = heap_new(double, MAX_T, 3); @@ -40,7 +40,7 @@ void t_heap_size() //FTEST heap_destroy(h); } -void t_heap_push_pop_basic() //FTEST +void t_heap_push_pop_basic() { Heap* h = heap_new(int, MIN_T, 3); @@ -101,7 +101,7 @@ void t_heap_push_pop_basic() //FTEST heap_destroy(h); } -void t_heap_push_pop_evolved() //FTEST +void t_heap_push_pop_evolved() { int n = 10; @@ -148,7 +148,7 @@ void t_heap_push_pop_evolved() //FTEST heap_destroy(h); } -void t_heap_copy() //FTEST +void t_heap_copy() { int n = 10;