From fe671029c34407d3d4408980b3dc378c0f4e0e63 Mon Sep 17 00:00:00 2001 From: David Leal Date: Wed, 26 Apr 2023 11:26:03 -0600 Subject: [PATCH] docs: improve contributing guidelines --- CONTRIBUTING.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 14385a12b..a65dcc14d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -116,6 +116,8 @@ static void tests() { assert(is_number_on_array(arr, 9) == true); assert(is_number_on_array(arr, 4) == false); + + std::cout << "All tests have successfully passed!\n"; } /** @@ -192,6 +194,9 @@ static void test() { assert(func(...) == ...); // this ensures that the algorithm works as expected // can have multiple checks + + // this lets the user know that the tests have passed + std::cout << "All tests have successfully passed!\n"; } /**