summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-06-28 12:53:57 -0600
committermo khan <mo.khan@gmail.com>2020-06-28 12:53:57 -0600
commitb4329298825bb6e9783bb463e786a4253422efd3 (patch)
tree64031b4cd77ad74ecb0f8dd64a5eb8a03325b531 /main.c
parent26bf5c80b83a108e8daabbbd4db63065433c8ccc (diff)
Add MinStack test
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.c b/main.c
index b80ffa5..f7d1965 100644
--- a/main.c
+++ b/main.c
@@ -5,6 +5,7 @@ TestSuite *priority_queue_tests();
TestSuite *stack_tests();
TestSuite *swap_singly_linked_list_tests();
TestSuite *swap_doubly_linked_list_tests();
+TestSuite *min_stack_tests();
int main(int argc, char **argv) {
TestSuite *suite = create_test_suite();
@@ -14,6 +15,7 @@ int main(int argc, char **argv) {
add_suite(suite, stack_tests());
add_suite(suite, swap_singly_linked_list_tests());
add_suite(suite, swap_doubly_linked_list_tests());
+ add_suite(suite, min_stack_tests());
if (argc > 1)
return run_single_test(suite, argv[1], create_text_reporter());