diff --git a/hashing/sha256.cpp b/hashing/sha256.cpp index 514fffa9f..a1c66bd6d 100644 --- a/hashing/sha256.cpp +++ b/hashing/sha256.cpp @@ -16,6 +16,7 @@ #include /// For assert #include /// For uint8_t, uint32_t and uint64_t data types #include /// For std::setfill and std::setw +#include /// For IO operations #include /// For std::stringstream #include /// For std::move #include /// 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"; } /**