Add successful tests print (#140)

When tests pass, a message is printed to avoid ambiguity.
This commit is contained in:
ljjimene
2020-10-01 22:54:56 -04:00
committed by GitHub
parent 07f51c242c
commit a08924b28a

View File

@@ -1,3 +1,4 @@
#include <stdio.h>
#include "test.h" #include "test.h"
#if STUB_MALLOC #if STUB_MALLOC
@@ -86,5 +87,6 @@ int main(void)
test_stack(); test_stack();
test_queue(); test_queue();
test_priority_queue(); test_priority_queue();
printf("Tests Passed\n");
return 0; return 0;
} }