We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb8bb3c commit fe67102Copy full SHA for fe67102
CONTRIBUTING.md
@@ -116,6 +116,8 @@ static void tests() {
116
117
assert(is_number_on_array(arr, 9) == true);
118
assert(is_number_on_array(arr, 4) == false);
119
+
120
+ std::cout << "All tests have successfully passed!\n";
121
}
122
123
/**
@@ -192,6 +194,9 @@ static void test() {
192
194
assert(func(...) == ...); // this ensures that the algorithm works as expected
193
195
196
// can have multiple checks
197
198
+ // this lets the user know that the tests have passed
199
200
201
202
0 commit comments