mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
chore: add print message after tests
This commit is contained in:
parent
33468b1ffc
commit
48191bbebc
@ -16,6 +16,7 @@
|
||||
#include <cassert> /// For assert
|
||||
#include <cstdint> /// For uint8_t, uint32_t and uint64_t data types
|
||||
#include <iomanip> /// For std::setfill and std::setw
|
||||
#include <iostream> /// For IO operations
|
||||
#include <sstream> /// For std::stringstream
|
||||
#include <utility> /// For std::move
|
||||
#include <vector> /// For std::vector
|
||||
@ -314,6 +315,8 @@ static void test() {
|
||||
test_get_char();
|
||||
test_right_rotate();
|
||||
test_sha256();
|
||||
|
||||
std::cout << "All tests have successfully passed!\n";
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user