diff options
| author | mo khan <mo.khan@gmail.com> | 2020-06-28 12:53:57 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-06-28 12:53:57 -0600 |
| commit | b4329298825bb6e9783bb463e786a4253422efd3 (patch) | |
| tree | 64031b4cd77ad74ecb0f8dd64a5eb8a03325b531 /main.c | |
| parent | 26bf5c80b83a108e8daabbbd4db63065433c8ccc (diff) | |
Add MinStack test
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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()); |
