From e46b9cfc6e1ddef83a3caa9406dee6a6b746f342 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sat, 24 Oct 2015 15:24:40 +0200 Subject: Display a success message at the end of the test suite --- src/test.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/test.cpp b/src/test.cpp index f6fb629..ae36460 100644 --- a/src/test.cpp +++ b/src/test.cpp @@ -30,6 +30,7 @@ using namespace std::chrono_literals; static const std::string color(""); +static const std::string success_color(""); static const std::string reset(""); int main() @@ -541,5 +542,6 @@ int main() #endif } + std::cout << success_color << "All test passed successfully!" << reset << std::endl; return 0; } -- cgit v1.2.3