We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b76e4d2 commit 108428dCopy full SHA for 108428d
tests/automated-tests.cpp
@@ -10,12 +10,12 @@ int main()
10
CppSafeIO::clearConsole(); //not executing so that the building and testing log doesn't get erased in case of running ctest -V
11
12
std::cout << "Automated tests passed.\n"
13
- << "You can include the cppsafeio.h file, and use the CppSafeIO namespace.\n"
+ << "You can include the cppsafeio.h header file and use the CppSafeIO namespace.\n"
14
<< "You can try to run CppSafeIO-Tests executable to test the input functions.\n";
15
}
16
catch (const std::exception& exception)
17
{
18
- std::cerr << "CppSafeIO library's tests failed\n"
+ std::cerr << "CppSafeIO library's automated tests failed\n"
19
<< "Error: " << exception.what() << '\n';
20
21
return 1;
0 commit comments