Documentation for fe671029c3

This commit is contained in:
github-actions
2023-04-26 17:31:51 +00:00
parent d8a6089a86
commit 0ae0c4f573

View File

@@ -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 &lt;&lt; "All tests have successfully passed!<br />
";
}
/**
@@ -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 &lt;&lt; "All tests have successfully passed!<br />
";
}
/**