diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-10-24 15:24:40 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-10-24 15:24:40 +0200 |
commit | e46b9cfc6e1ddef83a3caa9406dee6a6b746f342 (patch) | |
tree | c73b5a6637d009b005c3755f4e99ac28216b676c /src/test.cpp | |
parent | e7a91badcdd421e04eea8235debc8ae582919744 (diff) | |
download | biboumi-e46b9cfc6e1ddef83a3caa9406dee6a6b746f342.tar.gz biboumi-e46b9cfc6e1ddef83a3caa9406dee6a6b746f342.tar.bz2 biboumi-e46b9cfc6e1ddef83a3caa9406dee6a6b746f342.tar.xz biboumi-e46b9cfc6e1ddef83a3caa9406dee6a6b746f342.zip |
Display a success message at the end of the test suite
Diffstat (limited to 'src/test.cpp')
-rw-r--r-- | src/test.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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("[35m"); +static const std::string success_color("[32m"); static const std::string reset("[m"); int main() @@ -541,5 +542,6 @@ int main() #endif } + std::cout << success_color << "All test passed successfully!" << reset << std::endl; return 0; } |