Skip to content

Commit

Permalink
docs: improve contributing guidelines
Browse files Browse the repository at this point in the history
  • Loading branch information
Panquesito7 authored Apr 26, 2023
1 parent eb8bb3c commit fe67102
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}

/**
Expand Down Expand Up @@ -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";
}
/**
Expand Down

0 comments on commit fe67102

Please sign in to comment.