Skip to content

Commit fe67102

Browse files
authored
docs: improve contributing guidelines
1 parent eb8bb3c commit fe67102

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

CONTRIBUTING.md

+5
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ static void tests() {
116116

117117
assert(is_number_on_array(arr, 9) == true);
118118
assert(is_number_on_array(arr, 4) == false);
119+
120+
std::cout << "All tests have successfully passed!\n";
119121
}
120122

121123
/**
@@ -192,6 +194,9 @@ static void test() {
192194
assert(func(...) == ...); // this ensures that the algorithm works as expected
193195
194196
// can have multiple checks
197+
198+
// this lets the user know that the tests have passed
199+
std::cout << "All tests have successfully passed!\n";
195200
}
196201
197202
/**

0 commit comments

Comments
 (0)