From 0ae0c4f573312caad776317847aa5dcb5ebbe9ee Mon Sep 17 00:00:00 2001
From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Date: Wed, 26 Apr 2023 17:31:51 +0000
Subject: [PATCH] Documentation for fe671029c34407d3d4408980b3dc378c0f4e0e63
---
d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html b/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html
index 920155ea5..56167f605 100644
--- a/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html
+++ b/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html
@@ -214,6 +214,9 @@ 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!
+";
}
/**
@@ -290,6 +293,10 @@ 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!
+";
}
/**